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 36dc6c2 commit be5b9b4Copy full SHA for be5b9b4
.github/workflows/release.yml
@@ -16,5 +16,17 @@ jobs:
16
SM_CLIENT_CERT_PASSWORD: ${{ secrets.SM_CLIENT_CERT_PASSWORD }}
17
SM_HOST: ${{ secrets.SM_HOST }}
18
steps:
19
- - name: Download + Install Inno
20
- uses: pwall2222/inno-setup-download@v0.0.4
+ - name: Check out repository code
+ uses: actions/checkout@v4
21
+ with:
22
+ submodules: true
23
+ token: ${{ secrets.GH_LPM_ASPYTHON_TOKEN }}
24
+
25
+ - name: Download Inno Setup installer
26
+ run: Invoke-WebRequest -Uri "https://jrsoftware.org/download.php/is.exe" -OutFile "is.exe"
27
28
+ - name: Install Inno Setup silently
29
+ run: .\is.exe /verysilent /dir="C:\Program Files\Inno Setup"
30
31
+ - name: Run iscc against .iss file
32
+ run: C:\Progra~1\Inno Setup\ISCC.exe .\utils\Setup.iss
0 commit comments