Skip to content

Commit

Permalink
Customize the Inno installation
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewMusser committed Jul 25, 2024
1 parent 36dc6c2 commit be5b9b4
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,17 @@ jobs:
SM_CLIENT_CERT_PASSWORD: ${{ secrets.SM_CLIENT_CERT_PASSWORD }}
SM_HOST: ${{ secrets.SM_HOST }}
steps:
- name: Download + Install Inno
uses: pwall2222/[email protected]
- name: Check out repository code
uses: actions/checkout@v4
with:
submodules: true
token: ${{ secrets.GH_LPM_ASPYTHON_TOKEN }}

- name: Download Inno Setup installer
run: Invoke-WebRequest -Uri "https://jrsoftware.org/download.php/is.exe" -OutFile "is.exe"

- name: Install Inno Setup silently
run: .\is.exe /verysilent /dir="C:\Program Files\Inno Setup"

- name: Run iscc against .iss file
run: C:\Progra~1\Inno Setup\ISCC.exe .\utils\Setup.iss

0 comments on commit be5b9b4

Please sign in to comment.