Skip to content

Commit

Permalink
fix string compare
Browse files Browse the repository at this point in the history
  • Loading branch information
taukakao committed Jan 30, 2024
1 parent 7e44da3 commit 1e44f76
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 @@ -75,15 +75,15 @@ jobs:
update:
runs-on: ubuntu-latest
needs: check_update
if: ${{ needs.check_update.outputs.has_updates }}
if: ${{ needs.check_update.outputs.has_updates == 'true' }}
steps:
- name: Upgrading
run: echo "Upgrading"

dont_update:
runs-on: ubuntu-latest
needs: check_update
if: ${{ ! needs.check_update.outputs.has_updates }}
if: ${{ needs.check_update.outputs.has_updates != 'true' }}
steps:
- name: Not Upgrading
run: echo "Nothing to upgrade"
Expand Down

0 comments on commit 1e44f76

Please sign in to comment.