Skip to content

Commit

Permalink
fix(ci): add missing missing echo to release please (#476)
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasbtf authored Feb 17, 2022
1 parent eb598b7 commit 6a0b899
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Check if PR is created
id: pr_created
run: |
export PRNUMBER=$( ${{ steps.release.outputs.pr }} | jq -r '.number' )
export PRNUMBER=$( echo '${{ steps.release.outputs.pr }}' | jq -r '.number' )
if [ "$PRNUMBER" -eq "$PRNUMBER" ] 2>/dev/null; then
echo "::set-output name=pr::$(echo true)"
else
Expand Down

0 comments on commit 6a0b899

Please sign in to comment.