Skip to content

Commit

Permalink
Fix apphost binary caching
Browse files Browse the repository at this point in the history
  • Loading branch information
Popax21 committed Apr 19, 2024
1 parent 50a9d81 commit e653332
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.cache-hit }}
if: ${{ !needs.check-apphost-cache.outputs.cache-hit }}

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

runs-on: ubuntu-latest
needs: [check-apphost-cache, build-apphost]
if: ${{ !needs.check-apphost-cache.cache-hit }}
if: ${{ !needs.check-apphost-cache.outputs.cache-hit }}
steps:
- uses: actions/download-artifact@v4
with:
Expand All @@ -48,7 +48,7 @@ jobs:
- uses: actions/cache/save@v4
id: cache-check
with:
key: ${{ needs.check-apphost-cache.cache-key }}
key: ${{ needs.check-apphost-cache.outputs.cache-key }}
path: apphost

build-nugetpkg:
Expand Down

0 comments on commit e653332

Please sign in to comment.