Skip to content

Build Windows App (.msi) #5

Build Windows App (.msi)

Build Windows App (.msi) #5

Workflow file for this run

name: Build Desktop App (Windows)
on:
# push:
# branches:
# - master
# pull_request:
# branches:
# - master
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
- name: Cache Rust dependencies
uses: Swatinem/rust-cache@v2
- name: Install Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest
- name: Install Bun dependencies
run: bun install --frozen-lockfile
- name: Generate TailwindCSS
run: bun build:tailwind
- name: Install Dioxus CLI
run: cargo install dioxus-cli
- name: Create .env file
env:
API_URL: ${{ secrets.API_URL }}
SUPABASE_URL: ${{ secrets.SUPABASE_URL }}
SUPABASE_API_KEY: ${{ secrets.SUPABASE_API_KEY }}
SUPABASE_JWT_SECRET: ${{ secrets.SUPABASE_JWT_SECRET }}
DATABASE_URL: ${{ secrets.DATABASE_URL }}
run: |
powershell -Command "Set-Content -Path .env -Value "API_URL=$env:API_URL`nSUPABASE_URL=$env:SUPABASE_URL`nSUPABASE_API_KEY=$env:SUPABASE_API_KEY`nSUPABASE_JWT_SECRET=$env:SUPABASE_JWT_SECRET`nDATABASE_URL=$env:DATABASE_URL""
- name: Build
run: mv Cargo.toml Cargo.toml.bak && cp Cargo.desktop.toml Cargo.toml && dx bundle --platform desktop --release
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: windows
path: dist/bundle/msi/