CI: replace set-output

This commit is contained in:
Andras Gemes 2023-04-25 22:06:14 +02:00
parent 8d531f4afc
commit ac71cb4126
No known key found for this signature in database
GPG Key ID: F1EF1E4F007ECBAB

View File

@ -37,11 +37,11 @@ jobs:
- name: Get current date
id: date
run: echo "::set-output name=date::$(date +'%Y%m%d')"
run: echo "date=$(date +'%Y%m%d')" >> $GITHUB_OUTPUT
- name: generate short hash
id: vars
run: echo "::set-output name=sha_short::$(git rev-parse --short HEAD)"
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- name: Upload weekly build
uses: actions/upload-artifact@v3