mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-04-29 02:12:36 +02:00
Build Windows MSI/.exe in GitHub actions
Update our GitHub actions manifest to also build a dummy Windows MSI installer for Dangerzone, so that we don't find out issues during release.
This commit is contained in:
parent
f307e03215
commit
56c5d77afd
1 changed files with 7 additions and 0 deletions
7
.github/workflows/ci.yml
vendored
7
.github/workflows/ci.yml
vendored
|
@ -20,6 +20,13 @@ jobs:
|
||||||
- run: poetry install
|
- run: poetry install
|
||||||
- name: Run CLI tests
|
- name: Run CLI tests
|
||||||
run: poetry run make test
|
run: poetry run make test
|
||||||
|
# Taken from: https://github.com/orgs/community/discussions/27149#discussioncomment-3254829
|
||||||
|
- name: Set path for candle and light
|
||||||
|
run: echo "C:\Program Files (x86)\WiX Toolset v3.11\bin" >> $GITHUB_PATH
|
||||||
|
shell: bash
|
||||||
|
- name: Build the MSI installer
|
||||||
|
# NOTE: This also builds the .exe internally.
|
||||||
|
run: poetry run .\install\windows\build-app.bat
|
||||||
|
|
||||||
macOS:
|
macOS:
|
||||||
runs-on: macos-latest
|
runs-on: macos-latest
|
||||||
|
|
Loading…
Reference in a new issue