Skip to content
This repository has been archived by the owner on Oct 29, 2024. It is now read-only.

Commit

Permalink
fix missing needs (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
dallmeyer authored Sep 27, 2024
1 parent a0bcaf8 commit c0f268c
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/create-mod-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,9 @@ jobs:

bundle_windows_build:
name: "Bundle Windows Build"
needs: build_windows_clang
needs:
- create_release
- build_windows_clang
if: ${{ !inputs.skipWindows && inputs.buildBinaries }}
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -181,7 +183,9 @@ jobs:

bundle_linux_build:
name: "Bundle Linux Build"
needs: build_linux_clang
needs:
- create_release
- build_linux_clang
if: ${{ !inputs.skipLinux && inputs.buildBinaries }}
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -236,7 +240,9 @@ jobs:

bundle_macos_build:
name: "Bundle MacOS Build"
needs: build_macos_intel
needs:
- create_release
- build_macos_intel
if: ${{ !inputs.skipMacOS && inputs.buildBinaries }}
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit c0f268c

Please sign in to comment.