Skip to content

Commit 30b53f5

Browse files
committed
[ci] Do not use the set-output command
The `set-output` command is deprecated. Use the `GITHUB_OUTPUT` environment file. Refs: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
1 parent 134c979 commit 30b53f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
- uses: actions/download-artifact@v3
8383
with:
8484
path: prebuilds
85-
- run: echo ::set-output name=version::$(git describe --tags)
85+
- run: echo "version=$(git describe --tags)" >> $GITHUB_OUTPUT
8686
id: get_version
8787
- run:
8888
tar -cvf "${{ steps.get_version.outputs.version

0 commit comments

Comments
 (0)