Files
Cagire/.github/workflows/msi.yml
Raphaël Forment eeefb7d54d
All checks were successful
Deploy Website / deploy (push) Has been skipped
Fix: GitHub CI windows again
2026-03-01 22:44:00 +01:00

33 lines
687 B
YAML

name: MSI
on:
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- name: Build CLI
run: cargo build --release
- name: Build Desktop
run: cargo build --release --features desktop --bin cagire-desktop
- name: Install cargo-wix
run: cargo install cargo-wix
- name: Build MSI
run: cargo wix --no-build --nocapture --package cagire -C -arch -C x64
- name: Upload MSI
uses: actions/upload-artifact@v4
with:
name: cagire-msi
path: target/wix/*.msi