Skip to content

Commit

Permalink
better inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinMind committed Jun 25, 2024
1 parent 93ba3bf commit 60e3242
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/worker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@ jobs:
- id: output
shell: bash
run: |
echo "big=${{ github.event.inputs.number > 10 }}" >> $GITHUB_OUTPUT
echo "big=${{ inputs.number > 10 }}" >> $GITHUB_OUTPUT
- id: test
shell: bash
run: |
if [[ "${{ github.event.inputs.boolean }}" == 'true' ]]; then
if [[ "${{ inputs.boolean }}" == 'true' ]]; then
exit 1
fi
Expand Down

0 comments on commit 60e3242

Please sign in to comment.