Skip to content

Commit

Permalink
Use echo {name}={value} >> $GITHUB_OUTPUT in release workflow (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
casey authored Sep 3, 2024
1 parent 5129b96 commit 2385e62
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,9 @@ jobs:
id: release-type
run: |
if [[ ${{ github.ref }} =~ ^refs/tags/[0-9]+[.][0-9]+[.][0-9]+$ ]]; then
echo ::set-output name=value::release
echo value=release >> $GITHUB_OUTPUT
else
echo ::set-output name=value::prerelease
echo value=prerelease >> $GITHUB_OUTPUT
fi
- name: Package
Expand Down

0 comments on commit 2385e62

Please sign in to comment.