Skip to content

Commit

Permalink
ci: Use GITHUB_OUTPUT envvar instead of set-output command (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
arunsathiya authored Jul 1, 2024
1 parent 1d8d90e commit 2389d48
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ jobs:
uses: actions/checkout@v3
- id: git-x
run: |
echo "::set-output name=git-version::$(git describe --tags --always)"
echo "git-version=$(git describe --tags --always)" >> "$GITHUB_OUTPUT"
- id: git-branch
run: |
echo "::set-output name=git-branch::$(echo ${GITHUB_REF##*/} | tr '[A-Z]' '[a-z]')"
echo "git-branch=$(echo ${GITHUB_REF##*/} | tr '[A-Z]' '[a-z]')" >> "$GITHUB_OUTPUT"
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
Expand Down

0 comments on commit 2389d48

Please sign in to comment.