File tree Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Expand file tree Collapse file tree 2 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 29
29
x64_suffix : " -x64"
30
30
x86_suffix : " -x86"
31
31
icon : logo.ico
32
- - name : Check build outputs
33
- shell : pwsh
34
- run : |
35
- if (-not (Test-Path -Path "$cwd\build\polygon-x86.exe")) { throw "polygon-x86.exe not found" };
36
- if (-not (Test-Path -Path "$cwd\build\polygon-x64.exe")) { throw "polygon-x64.exe not found" };
37
32
- name : Generate checksums
38
33
shell : pwsh
39
34
if : startsWith(github.ref, 'refs/tags/v')
Original file line number Diff line number Diff line change 1
- Remove-Item - Path .\build\* - Recurse - Force
2
- Ahk2Exe.exe / in polygon.ahk / out .\build\polygon-x64.exe / icon logo.ico / base " $HOME \.scoop\apps\autohotkey\current\v2\AutoHotkey64.exe"
3
- Ahk2Exe.exe / in polygon.ahk / out .\build\polygon-x86.exe / icon logo.ico / base " $HOME \.scoop\apps\autohotkey\current\v2\AutoHotkey32.exe"
4
- candle.exe .\polygon.wxs - out .\build\polygon- x86.wixobj - dVersion= " 0.0.0" - arch x86
5
- candle.exe .\polygon.wxs - out .\build\polygon- x64.wixobj - dVersion= " 0.0.0" - arch x64
6
- light.exe .\build\polygon- x86.wixobj - ext WixUIExtension - out .\build\polygon- x86.msi
7
- light.exe .\build\polygon- x64.wixobj - ext WixUIExtension - out .\build\polygon- x64.msi
1
+ $cwd = (Get-Location ).Path;
2
+
3
+ Remove-Item - Path " $cwd \build\*" - Recurse - Force;
4
+
5
+ Ahk2Exe.exe / in polygon.ahk / out " $cwd \build\polygon-x64.exe" / icon logo.ico / base " $HOME \.scoop\apps\autohotkey\current\v2\AutoHotkey64.exe" ;
6
+ Ahk2Exe.exe / in polygon.ahk / out " $cwd \build\polygon-x86.exe" / icon logo.ico / base " $HOME \.scoop\apps\autohotkey\current\v2\AutoHotkey32.exe" ;
7
+
8
+ candle.exe .\polygon.wxs - out " $cwd \build\polygon-x86.wixobj" - dVersion= " 0.0.0" - arch x86;
9
+ candle.exe .\polygon.wxs - out " $cwd \build\polygon-x64.wixobj" - dVersion= " 0.0.0" - arch x64;
10
+
11
+ light.exe " $cwd \build\polygon-x86.wixobj" - ext WixUIExtension - out " $cwd \build\polygon-x86.msi" ;
12
+ light.exe " $cwd \build\polygon-x64.wixobj" - ext WixUIExtension - out " $cwd \build\polygon-x64.msi" ;
You can’t perform that action at this time.
0 commit comments