Skip to content

Commit 2c78eef

Browse files
Fixed dependencies of build jobs.
1 parent 32d70d1 commit 2c78eef

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ jobs:
222222
path: ${{ runner.os == 'Windows' && 'conan' || 'pylon_sdk.tar.gz' }}
223223

224224
build-linux:
225-
needs: download
225+
needs: [prepare,download]
226226
strategy:
227227
fail-fast: false
228228
matrix:
@@ -340,7 +340,7 @@ jobs:
340340
341341
342342
build-windows:
343-
needs: download
343+
needs: [prepare,download]
344344
runs-on: windows-latest
345345
strategy:
346346
fail-fast: false
@@ -388,7 +388,7 @@ jobs:
388388

389389

390390
build-macos:
391-
needs: download
391+
needs: [prepare,download]
392392
runs-on: macos-latest
393393
strategy:
394394
fail-fast: false

0 commit comments

Comments
 (0)