Skip to content

Commit

Permalink
CI: replace set-output
Browse files Browse the repository at this point in the history
  • Loading branch information
gemesa committed Apr 25, 2023
1 parent 8d531f4 commit ac71cb4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ac71cb4

Please sign in to comment.