Skip to content

Commit

Permalink
[ci] Do not use the set-output command
Browse files Browse the repository at this point in the history
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/
  • Loading branch information
lpinca committed Oct 18, 2022
1 parent 134c979 commit 30b53f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
- uses: actions/download-artifact@v3
with:
path: prebuilds
- run: echo ::set-output name=version::$(git describe --tags)
- run: echo "version=$(git describe --tags)" >> $GITHUB_OUTPUT
id: get_version
- run:
tar -cvf "${{ steps.get_version.outputs.version
Expand Down

0 comments on commit 30b53f5

Please sign in to comment.