Skip to content

Commit

Permalink
Fix conditional statement in action.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
tmclaugh committed Sep 2, 2024
1 parent aa1dfb1 commit be23e74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ runs:
id: check-job-type
shell: bash
run: |
if [ ${{ inputs.job_type }} != 'build' -o ${{ inputs.job_type }} != 'deploy']; then
if [ ${{ inputs.job_type }} != 'build' -o ${{ inputs.job_type }} != 'deploy' ]; then
echo "job-type=deploy" >> $GITHUB_OUTPUT
else
echo "job-type=unknown" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit be23e74

Please sign in to comment.