Skip to content

Update to Inno Setup 6.3 #69

Update to Inno Setup 6.3

Update to Inno Setup 6.3 #69

Workflow file for this run

name: Builds
on:
push:
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
jobs:
build-and-run:
name: Build & run
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Compile Updater
run: iscc /DAppName=Updater /DAppVersion=1.0 src\updater.iss
shell: cmd
- name: Run Updater
run: builds\output\Updater.exe /VERYSILENT /SUPPRESSMSGBOXES /CI=true /LOG=C:\updater.txt
shell: cmd
- name: Compile Setup
run: iscc /DAppName=Updater /DAppVersion=1.0 src\installer\setup.iss
shell: cmd
- name: Run Setup
run: builds\output\UpdaterSetup.exe /VERYSILENT /SUPPRESSMSGBOXES /LOG=C:\setup.txt
shell: cmd
- name: Run Uninstall
run: unins000.exe /VERYSILENT /SUPPRESSMSGBOXES /LOG=C:\uninstall.txt
shell: cmd
working-directory: "C:/Program Files/Updater"
- name : Upload logs
uses: actions/upload-artifact@v4
with:
path: |
C:\updater.txt
C:\setup.txt
C:\uninstall.txt