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 8768611 commit d0f15d5Copy full SHA for d0f15d5
.github/workflows/cd.yml
@@ -18,7 +18,7 @@ jobs:
18
19
- name: Get version
20
id: get_version
21
- run: echo ::set-output name=version::${GITHUB_REF/refs\/tags\//}
+ run: echo "version=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_OUTPUT
22
23
- name: Restore cargo cache
24
uses: Swatinem/rust-cache@v2
@@ -83,7 +83,7 @@ jobs:
83
if: matrix.os == 'macos-latest'
84
id: shasum
85
run: |
86
- echo ::set-output name=sha::"$(shasum -a 256 ./release/gitui-mac.tar.gz | awk '{printf $1}')"
+ echo sha="$(shasum -a 256 ./release/gitui-mac.tar.gz | awk '{printf $1}')" >> $GITHUB_OUTPUT
87
88
- name: Extract release notes
89
if: matrix.os == 'ubuntu-latest'
0 commit comments