Skip to content

Commit

Permalink
Fix CI inter-job dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Popax21 committed Jun 8, 2024
1 parent 342f4dc commit 6f5d45a
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/build-nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,18 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v4

- name: Download Piton apphost binaries
- name: Download Piton apphost binaries (artifact)
uses: actions/download-artifact@v4
if: ${{ !needs.check-apphost-cache.outputs.cache-hit }}
with:
pattern: apphost-*
path: apphost-bin
merge-multiple: true

- name: Download Piton apphost binaries (cache)
uses: actions/cache/restore@v4
id: cache-check
if: ${{ needs.check-apphost-cache.outputs.cache-hit }}
with:
key: ${{ needs.check-apphost-cache.outputs.cache-key }}
path: apphost-bin
Expand Down

0 comments on commit 6f5d45a

Please sign in to comment.