-
Notifications
You must be signed in to change notification settings - Fork 4
60 lines (48 loc) · 1.62 KB
/
windows.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
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/