Skip to content

Commit d0f15d5

Browse files
committed
1 parent 8768611 commit d0f15d5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/cd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
- name: Get version
2020
id: get_version
21-
run: echo ::set-output name=version::${GITHUB_REF/refs\/tags\//}
21+
run: echo "version=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_OUTPUT
2222

2323
- name: Restore cargo cache
2424
uses: Swatinem/rust-cache@v2
@@ -83,7 +83,7 @@ jobs:
8383
if: matrix.os == 'macos-latest'
8484
id: shasum
8585
run: |
86-
echo ::set-output name=sha::"$(shasum -a 256 ./release/gitui-mac.tar.gz | awk '{printf $1}')"
86+
echo sha="$(shasum -a 256 ./release/gitui-mac.tar.gz | awk '{printf $1}')" >> $GITHUB_OUTPUT
8787
8888
- name: Extract release notes
8989
if: matrix.os == 'ubuntu-latest'

0 commit comments

Comments
 (0)