Skip to content

Commit 80f0e28

Browse files
authored
Update build-nabla.yml
1 parent aaa132b commit 80f0e28

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/build-nabla.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ jobs:
284284
powershell -NoLogo -NoProfile -ExecutionPolicy Bypass -NoExit -File C:\Scripts\startup-docker.ps1
285285
286286
smoke-tests:
287-
name: Build Smoke
287+
name: smoke-windows
288288
needs: build-windows
289289
runs-on: windows-2022
290290
strategy:
@@ -307,7 +307,9 @@ jobs:
307307

308308
- name: Unpack Nabla install artifact
309309
run: |
310-
tar -xf smoke\*-install.tar -C smoke
310+
$tar = Get-ChildItem smoke -Filter *-install.tar -File | Select-Object -First 1
311+
if (-not $tar) { throw "install tar not found in smoke" }
312+
tar -xf $tar.FullName -C smoke
311313
if (-not (Test-Path "smoke/build-ct/install")) { throw "smoke/build-ct/install not found" }
312314
tree.com smoke /F
313315

0 commit comments

Comments
 (0)