Skip to content

Build Installer

Build Installer #3

Workflow file for this run

name: Build Installer
on:
workflow_dispatch:
jobs:
build:
name: Build the Inno Setup Installer
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Prepare for testing (x64 only)
run: |
if (Test-Path -Path .\testing) {
Copy-Item -Path .\testing\* -Destination .\input -Recurse -Force
} else {
Write-Error "The 'testing' directory does not exist."
}
shell: pwsh
- name: Compile Installer
uses: Minionguyjpro/[email protected]
with:
path: Setup.iss
options: /O+
- name: Upload installer artifacts
uses: actions/upload-artifact@v4
with:
name: installer
path: output/*.exe
if-no-files-found: error