Skip to content

Commit

Permalink
feat(installer): try inno setup command line in workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Sylvain Leclerc <[email protected]>
  • Loading branch information
sylvlecl committed Nov 26, 2024
1 parent 56bf28f commit a3aabb0
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/windows-installer.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: deploy
on:
push:
branches:
- "test/inno-setup"

jobs:
binary:
runs-on: windows-latest
strategy:
max-parallel: 3

steps:
- name: 🐙 Checkout GitHub repo (+ download lfs dependencies)
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: true

- name: Test inno setup
run: iscc test.iss

0 comments on commit a3aabb0

Please sign in to comment.