Skip to content

Commit 2389d48

Browse files
authored
ci: Use GITHUB_OUTPUT envvar instead of set-output command (#2)
1 parent 1d8d90e commit 2389d48

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ jobs:
3131
uses: actions/checkout@v3
3232
- id: git-x
3333
run: |
34-
echo "::set-output name=git-version::$(git describe --tags --always)"
34+
echo "git-version=$(git describe --tags --always)" >> "$GITHUB_OUTPUT"
3535
- id: git-branch
3636
run: |
37-
echo "::set-output name=git-branch::$(echo ${GITHUB_REF##*/} | tr '[A-Z]' '[a-z]')"
37+
echo "git-branch=$(echo ${GITHUB_REF##*/} | tr '[A-Z]' '[a-z]')" >> "$GITHUB_OUTPUT"
3838
-
3939
name: Set up QEMU
4040
uses: docker/setup-qemu-action@v2

0 commit comments

Comments
 (0)