Skip to content

Commit

Permalink
Actually fix CI workflow conditionals
Browse files Browse the repository at this point in the history
  • Loading branch information
Popax21 committed Apr 19, 2024
1 parent d10883e commit c4f1e8e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ jobs:

needs: check-apphost-cache
uses: ./.github/workflows/build-apphost.yml
if: \!needs.check-apphost-cache.outputs.cache-hit
if: needs.check-apphost-cache.outputs.cache-hit != 'true'

cache-apphost-binaries:
name: Cache built apphost binaries

runs-on: ubuntu-latest
needs: [check-apphost-cache, build-apphost]
if: \!needs.check-apphost-cache.outputs.cache-hit
if: needs.check-apphost-cache.outputs.cache-hit != 'true'
steps:
- uses: actions/download-artifact@v4
with:
Expand All @@ -56,7 +56,7 @@ jobs:

runs-on: ubuntu-latest
needs: [check-apphost-cache, build-apphost]
if: needs.check-apphost-cache.outputs.cache-hit || needs.build-apphost.result == 'success'
if: needs.check-apphost-cache.outputs.cache-hit == 'true' || needs.build-apphost.result == 'success'
steps:
- uses: actions/checkout@v4

Expand Down

0 comments on commit c4f1e8e

Please sign in to comment.