Skip to content

Commit

Permalink
working, testing more concise syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
fabioseel committed Oct 16, 2024
1 parent 9ecab0a commit c317c3c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/container_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@ jobs:
fi
- name: Test input TRUE
if: ${{steps.setup.outputs.deploy}}
if: ${{steps.setup.outputs.deploy==true}}
run:
echo "yes"

- name: Test input FALSE
if: ${{! steps.setup.outputs.deploy}}
if: ${{steps.setup.outputs.deploy==false}}
run:
echo "no"

Expand Down

0 comments on commit c317c3c

Please sign in to comment.