We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4c3270 commit 0ad1677Copy full SHA for 0ad1677
.github/workflows/windows_installer.yml
@@ -37,13 +37,14 @@ jobs:
37
- name: Test 1
38
run: |
39
echo "C:\Program Files (x86)\NSIS\Bin" | Out-File -FilePath $env:GITHUB_PATH -Append
40
+ echo "C:\Program Files (x86)\NSIS" | Out-File -FilePath $env:GITHUB_PATH -Append
41
Write-Host "Current PATH:"
42
Write-Host $env:PATH
43
44
- name: Test 2
45
- Write-Host "Current PATH 2:"
46
- Write-Host $env:PATH
+ Get-ChildItem -Path "C:\" -Recurse -Directory -Filter NSIS -ErrorAction SilentlyContinue
47
+
48
49
- name: Configure
50
run: meson setup build -Dbuildtype=release -Ddefault_library=shared -Dbuild_installer=true -Drun_in_ci=true
0 commit comments