2 Commits

Author SHA1 Message Date
hobokenchicken 836bcd8b8d fix: use powershell instead of pwsh for Windows runner
Release Desktop Apps / build-windows (push) Failing after 3h0m34s
Release Desktop Apps / build-linux (push) Has been cancelled
Release Desktop Apps / release (push) Has been cancelled
2026-07-07 19:18:33 +00:00
hobokenchicken 8fd649356c fix: windows build — use pwsh instead of bash for Rust install 2026-07-07 19:17:42 +00:00
+11 -2
View File
@@ -35,11 +35,20 @@ jobs:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: actions/setup-node@v4 - uses: actions/setup-node@v4
with: { node-version: 20 } with: { node-version: 20 }
- uses: dtolnay/rust-toolchain@stable - name: Install Rust
run: |
if (-not (Get-Command rustc -ErrorAction SilentlyContinue)) {
Invoke-WebRequest -Uri https://win.rustup.rs/x86_64 -OutFile rustup-init.exe
.\rustup-init.exe -y --default-toolchain stable
$env:Path += ";$env:USERPROFILE\.cargo\bin"
}
rustc --version
shell: powershell
- name: Build frontend - name: Build frontend
run: cd web; npm ci; npm run build run: cd web; npm ci; npm run build
- name: Build Tauri bundles - name: Build Tauri bundles
run: cd web; npx tauri build run: cd web; $env:Path += ";$env:USERPROFILE\.cargo\bin"; npx tauri build
shell: powershell
- name: Upload artifacts - name: Upload artifacts
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with: