fix windows installer action maybe please

This commit is contained in:
ConfiG 2023-07-31 18:24:10 +03:00
parent 99bd21cba2
commit fb911a05da
No known key found for this signature in database
GPG key ID: 44DA1983F524C11B
2 changed files with 4 additions and 4 deletions

View file

@ -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

View 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