Skip to content

Commit

Permalink
Try an installer build on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
scosman committed Nov 14, 2024
1 parent 972e0cf commit 9b71a02
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/build_desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,17 @@ jobs:
run: uv sync

# Compress MacOS app param ignored on Windows
- run: uv run sh ./app/desktop/build_desktop_app.sh --compress-mac-app
- uses: actions/upload-artifact@v4
- name: Build Desktop App
run: uv run sh ./app/desktop/build_desktop_app.sh --compress-mac-app

- name: Build Windows Installer
if: matrix.os == 'windows-latest'
uses: Minionguyjpro/Inno-Setup-Action@v1.2.5
with:
path: ./app/desktop/WinInnoSetup.iss

- name: Upload Build
uses: actions/upload-artifact@v4
with:
name: kiln-desktop-${{ runner.os }}-${{ runner.arch }}
path: ./app/desktop/build/dist/*
2 changes: 1 addition & 1 deletion app/desktop/WinInnoSetup.iss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
; Script generated by the Inno Setup Script Wizard.
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppPath "APP_PATH_TEMPLATE"
#define MyAppPath ".\build\dist"
#define MyAppName "Kiln"
#define MyAppVersion "0.5.6"
#define MyAppPublisher "Chesterfield Laboratories Inc"
Expand Down

0 comments on commit 9b71a02

Please sign in to comment.