Skip to content

Commit

Permalink
Migrate to GitHub environment files
Browse files Browse the repository at this point in the history
`set-output` is deprecated and has been replaced with a temporary file
whose path is made available in `$GITHUB_OUTPUT`.

https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
  • Loading branch information
hansmi committed Oct 20, 2022
1 parent 3d1ede7 commit 35ef71c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
else
args=( --skip-publish )
fi
echo "::set-output name=goreleaser_args::${args[*]}"
echo "goreleaser_args=${args[*]}" >> $GITHUB_OUTPUT
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v3
Expand Down

0 comments on commit 35ef71c

Please sign in to comment.