Skip to content

Commit

Permalink
use new syntax for workflow outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
jwt27 committed Oct 29, 2023
1 parent 8895d28 commit d449b69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- id: docheck
name: Check release state
run: |
echo "::set-output name=good::$([ -z "$(head -n 1 debian/changelog | grep 'UNRELEASED')" ] && echo 'true' || echo 'false')"
echo "good=$([ -z "$(head -n 1 debian/changelog | grep 'UNRELEASED')" ] && echo 'true' || echo 'false')" >> "$GITHUB_OUTPUT"
build:
runs-on: ubuntu-latest
Expand Down

0 comments on commit d449b69

Please sign in to comment.