Skip to content

Commit

Permalink
update github action
Browse files Browse the repository at this point in the history
  • Loading branch information
Mosibi committed Oct 26, 2024
1 parent c4e9089 commit f0a0594
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/environment_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ jobs:
- name: Show YAML_UPDATED 2
run: echo "YAML_UPDATED is $YAML_UPDATED"
- name: Run if YAML_UPDATED is false
if: ${{ vars.YAML_UPDATED == false }}
if: ${{ env.YAML_UPDATED == 'false' }}
run: echo "YAML_UPDATED is NOT true"
- name: Run if YAML_UPDATED is true
if: ${{ vars.YAML_UPDATED == true }}
if: ${{ env.YAML_UPDATED == 'true' }}
run: echo "YAML_UPDATED is true"

0 comments on commit f0a0594

Please sign in to comment.