Skip to content

Commit

Permalink
Fix dispatch condition syntax (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
mthalman authored Sep 6, 2024
1 parent 8cf02ef commit 88726d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ runs:
echo "ACTION_DISPATCH_PAYLOAD=$actionPayload" >> $env:GITHUB_OUTPUT
echo "OUTPUT_DISPATCH_PAYLOAD=$outputPayload" >> $env:GITHUB_OUTPUT
- name: Repository Dispatch
if: ${{ steps.check-image.outputs.SEND_DISPATCH }} == 'true'
if: ${{ steps.check-image.outputs.SEND_DISPATCH == 'true' }}
uses: peter-evans/repository-dispatch@v3
with:
token: ${{ inputs.token }}
Expand Down

0 comments on commit 88726d7

Please sign in to comment.