We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d8d90e commit 2389d48Copy full SHA for 2389d48
.github/workflows/release.yaml
@@ -31,10 +31,10 @@ jobs:
31
uses: actions/checkout@v3
32
- id: git-x
33
run: |
34
- echo "::set-output name=git-version::$(git describe --tags --always)"
+ echo "git-version=$(git describe --tags --always)" >> "$GITHUB_OUTPUT"
35
- id: git-branch
36
37
- 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"
38
-
39
name: Set up QEMU
40
uses: docker/setup-qemu-action@v2
0 commit comments