Skip to content

Commit

Permalink
ci: remove set-output from unstable release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ferferga committed Nov 15, 2022
1 parent 2af0147 commit 1b5e00f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/unstable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,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: Get commit hash ⚙️
id: sha
run: echo "::set-output name=sha::${GITHUB_SHA::7}"
run: echo "sha=${GITHUB_SHA::7}" >> $GITHUB_OUTPUT

- name: Configure QEMU ⚙️
uses: docker/setup-qemu-action@v2.1.0
Expand Down

0 comments on commit 1b5e00f

Please sign in to comment.