Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tsuza committed Nov 3, 2024
1 parent 8c0b520 commit 71dd121
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
libasound2-dev \
flatpak-builder
- name: Install Pandoc with Chocolatey
- name: Install deps with Chocolatey
if: matrix.target.target == 'windows'
run: |
choco install pandoc -y
Expand Down
18 changes: 9 additions & 9 deletions scripts/build-windows-installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ wix extension add WixToolset.UI.wixext
wix build \
-pdbtype none \
-arch x64 \
-d id=$ID \
-d app_name=$APP_NAME \
-d app_creator=$APP_CREATOR \
-d version=$VERSION \
-d description=$DESCRIPTION \
-d upgrade_guid=$UPGRADE_GUID \
-d path_to_icon=$ICON_PATH \
-d website_url=$WEBSITE_URL \
-d binary_path=$BINARY_PATH$ \
-d id="$ID" \
-d app_name="$APP_NAME" \
-d app_creator="$APP_CREATOR" \
-d version="$VERSION" \
-d description="$DESCRIPTION" \
-d upgrade_guid="$UPGRADE_GUID" \
-d path_to_icon="$ICON_PATH" \
-d website_url="$WEBSITE_URL" \
-d binary_path="$BINARY_PATH" \
$WXS_FILE \
-o target/release/mannager-installer.msi \
-ext WixToolset.UI.wixext

0 comments on commit 71dd121

Please sign in to comment.