Skip to content

Commit

Permalink
CI: Fix an issue with incorrect F3D sha being build in nightly (#215)
Browse files Browse the repository at this point in the history
  • Loading branch information
mwestphal authored Dec 23, 2024
1 parent 1fad3b6 commit 3514289
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
cache_postfix: cache-0

windows:
needs: cache_lfs
needs: [check_nightly, cache_lfs]
if: ${{ needs.check_nightly.outputs.should_run == 'true' }}
strategy:
fail-fast: false
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
artifacts: './build/F3D-*'

linux:
needs: cache_lfs
needs: [check_nightly, cache_lfs]
if: ${{ needs.check_nightly.outputs.should_run == 'true' }}
strategy:
fail-fast: false
Expand Down Expand Up @@ -153,7 +153,7 @@ jobs:
artifacts: './build/F3D-*'

macos:
needs: cache_lfs
needs: [check_nightly, cache_lfs]
if: ${{ needs.check_nightly.outputs.should_run == 'true' }}
strategy:
fail-fast: false
Expand Down

0 comments on commit 3514289

Please sign in to comment.