Skip to content

Commit

Permalink
now with brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
taukakao committed Jan 30, 2024
1 parent e28dc9b commit 653a75f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/vib-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,15 +76,15 @@ jobs:
update:
runs-on: ubuntu-latest
needs: check_update
if: needs.check_update.outputs.has_updates == "true"
if: ${{ needs.check_update.outputs.has_updates == true }}
steps:
- name: Hello World
run: echo "Hello, world ${{ needs.check_update.outputs.has_updates }}"

dont_update:
runs-on: ubuntu-latest
needs: check_update
if: needs.check_update.outputs.has_updates != "true"
if: ${{ needs.check_update.outputs.has_updates != true }}
steps:
- name: Bye World
run: echo "Bye, world OO${{ needs.check_update.outputs.has_updates }}OO"
Expand Down

0 comments on commit 653a75f

Please sign in to comment.