mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-14 19:15:05 -05:00
fix windows installer action maybe please
This commit is contained in:
parent
99bd21cba2
commit
fb911a05da
2 changed files with 4 additions and 4 deletions
5
.github/workflows/build.yml
vendored
5
.github/workflows/build.yml
vendored
|
@ -136,10 +136,7 @@ jobs:
|
|||
if: matrix.config.os_identifier == 'win'
|
||||
|
||||
- name: Package Windows
|
||||
run: |
|
||||
cd ./installer/windows
|
||||
iwr -useb https://aka.ms/vs/17/release/vc_redist.x86.exe -outfile 'VC_redist.x86.exe'
|
||||
makensis -WX -V3 installer.nsi
|
||||
run: .\installer\windows\package.ps1
|
||||
if: matrix.config.os_identifier == 'win'
|
||||
|
||||
- name: Publish Windows Installer
|
||||
|
|
3
installer/windows/package.ps1
Normal file
3
installer/windows/package.ps1
Normal file
|
@ -0,0 +1,3 @@
|
|||
Set-Location ./installer/windows
|
||||
Invoke-WebRequest -useb https://aka.ms/vs/17/release/vc_redist.x86.exe -outfile 'VC_redist.x86.exe'
|
||||
makensis -WX -V3 installer.nsi
|
Loading…
Reference in a new issue