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 50462f5 commit 8e8238cCopy full SHA for 8e8238c
.github/workflows/ci.yml
@@ -10,7 +10,7 @@ jobs:
10
- name: Set environment variables
11
id: vars
12
run: |
13
- echo "::set-output name=sha_short::$(git rev-parse --short HEAD)"
+ echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
14
15
- name: Dependency packages (apt)
16
.github/workflows/release.yml
@@ -15,7 +15,7 @@ jobs:
17
18
- echo "::set-output name=ver::$(echo ${{ github.ref }} | sed -e's#.*/v##')"
+ echo "ver=$(echo ${{ github.ref }} | sed -e's#.*/v##')" >> $GITHUB_OUTPUT
19
20
21
0 commit comments