Skip to content

Commit b761bc7

Browse files
chores: fix compilation with no submodules in prepare-deps
1 parent ada1019 commit b761bc7

File tree

1 file changed

+14
-9
lines changed

1 file changed

+14
-9
lines changed

.github/workflows/nightly-release.yml

+14-9
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
upload_url: ${{ steps.create_release.outputs.upload_url }}
1717
release_id: ${{ steps.create_release.outputs.id }}
1818
steps:
19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v4
2020
with:
2121
repository: "alvr-org/ALVR"
2222
- uses: actions-rs/toolchain@v1
@@ -59,10 +59,11 @@ jobs:
5959
# This is specific to the GitHub windows-2019 runner.
6060
LIBCLANG_PATH: 'C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Tools\Llvm\x64\bin'
6161
steps:
62-
- uses: actions/checkout@v2
62+
- uses: actions/checkout@v4
6363
with:
6464
repository: "alvr-org/ALVR"
6565
ref: ${{ needs.prepare_release.outputs.release_ref }}
66+
submodules: true
6667
- uses: actions-rs/toolchain@v1
6768
with:
6869
toolchain: stable
@@ -117,10 +118,11 @@ jobs:
117118
env:
118119
LIBCLANG_PATH: 'C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Tools\Llvm\x64\bin'
119120
steps:
120-
- uses: actions/checkout@v2
121+
- uses: actions/checkout@v4
121122
with:
122123
repository: "alvr-org/ALVR"
123124
ref: ${{ needs.prepare_release.outputs.release_ref }}
125+
submodules: true
124126
- uses: actions-rs/toolchain@v1
125127
with:
126128
toolchain: stable
@@ -155,7 +157,7 @@ jobs:
155157
env:
156158
LIBCLANG_PATH: 'C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Tools\Llvm\x64\bin'
157159
steps:
158-
- uses: actions/checkout@v2
160+
- uses: actions/checkout@v4
159161
with:
160162
repository: "alvr-org/ALVR"
161163
ref: ${{ needs.prepare_release.outputs.release_ref }}
@@ -189,10 +191,11 @@ jobs:
189191
runs-on: ubuntu-latest
190192
needs: [prepare_release]
191193
steps:
192-
- uses: actions/checkout@v2
194+
- uses: actions/checkout@v4
193195
with:
194196
repository: "alvr-org/ALVR"
195197
ref: ${{ needs.prepare_release.outputs.release_ref }}
198+
submodules: true
196199
- uses: actions-rs/toolchain@v1
197200
with:
198201
toolchain: stable
@@ -225,10 +228,11 @@ jobs:
225228
runs-on: ubuntu-latest
226229
needs: [prepare_release]
227230
steps:
228-
- uses: actions/checkout@v2
231+
- uses: actions/checkout@v4
229232
with:
230233
repository: "alvr-org/ALVR"
231234
ref: ${{ needs.prepare_release.outputs.release_ref }}
235+
submodules: true
232236
- uses: actions-rs/toolchain@v1
233237
with:
234238
toolchain: stable
@@ -263,7 +267,7 @@ jobs:
263267
runs-on: ubuntu-latest
264268
needs: [prepare_release]
265269
steps:
266-
- uses: actions/checkout@v2
270+
- uses: actions/checkout@v4
267271
with:
268272
repository: "alvr-org/ALVR"
269273
ref: ${{ needs.prepare_release.outputs.release_ref }}
@@ -295,7 +299,7 @@ jobs:
295299
runs-on: ubuntu-latest
296300
needs: [prepare_release]
297301
steps:
298-
- uses: actions/checkout@v2
302+
- uses: actions/checkout@v4
299303
with:
300304
repository: "alvr-org/ALVR"
301305
ref: ${{ needs.prepare_release.outputs.release_ref }}
@@ -328,10 +332,11 @@ jobs:
328332
runs-on: ubuntu-latest
329333
needs: [prepare_release]
330334
steps:
331-
- uses: actions/checkout@v2
335+
- uses: actions/checkout@v4
332336
with:
333337
repository: "alvr-org/ALVR"
334338
ref: ${{ needs.prepare_release.outputs.release_ref }}
339+
submodules: true
335340
- uses: actions-rs/toolchain@v1
336341
with:
337342
toolchain: stable

0 commit comments

Comments
 (0)