Skip to content

v1.0.0

v1.0.0 #18

Workflow file for this run

name: Build Windows App (.msi)
on:
push:
branches:
- master
paths:
- "Cargo.desktop.toml"
- "Dioxus.toml"
- "package.json"
- "src/**"
- "common/**"
- "assets/**"
- "gen/bin/**"
# pull_request:
# branches:
# - master
workflow_dispatch:
jobs:
build:
permissions: write-all
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: Copy Cargo.desktop.toml
run: mv Cargo.toml Cargo.toml.bak && cp Cargo.desktop.toml Cargo.toml
- name: Create .cargo/config.toml
shell: bash
run: mkdir .cargo && printf "[profile.release]\nopt-level = \"z\"\ndebug = false\nlto = true\ncodegen-units = 1\npanic = \"abort\"\nstrip = true\nincremental = false\n" > .cargo/config.toml
- name: Create .env
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 }}
shell: bash
run: printf "API_URL=$API_URL\nSUPABASE_URL=$SUPABASE_URL\nSUPABASE_API_KEY=$SUPABASE_API_KEY\nSUPABASE_JWT_SECRET=$SUPABASE_JWT_SECRET\nDATABASE_URL=$DATABASE_URL\n" > .env
- name: Build
run: dx bundle --platform desktop --release
# - name: Upload artifact
# uses: actions/upload-artifact@v4
# with:
# name: windows
# path: dist/bundle/msi/**/*.msi
# or Upload to a release
- name: Upload to release v1.0.0
env:
GH_TOKEN: ${{ github.token }}
run: gh release upload v1.0.0 (get-item .\dist\bundle\msi\*.msi) --clobber