4 Commits

Author SHA1 Message Date
hobokenchicken 60edc0b5b4 fix: Windows build — use cmd shell to avoid PowerShell execution policy
Release Desktop Apps / build-windows (push) Failing after 3h22m14s
Release Desktop Apps / build-linux (push) Has been cancelled
Release Desktop Apps / release (push) Has been cancelled
2026-07-07 19:19:55 +00:00
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
hobokenchicken 4a02d054cc fix: release workflow for Gitea Actions (runner labels + gitea-release-action)
Release Desktop Apps / build-windows (push) Failing after 3h0m44s
Release Desktop Apps / build-linux (push) Has been cancelled
Release Desktop Apps / release (push) Has been cancelled
2026-07-07 14:19:22 -04:00
+18 -7
View File
@@ -6,7 +6,7 @@ on:
jobs:
build-linux:
runs-on: linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
@@ -35,11 +35,20 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with: { node-version: 20 }
- uses: dtolnay/rust-toolchain@stable
- name: Install Rust
run: |
where rustc 2>nul || (
curl -L -o rustup-init.exe https://win.rustup.rs/x86_64 && rustup-init.exe -y --default-toolchain stable
)
set PATH=%USERPROFILE%\.cargo\bin;%PATH%
rustc --version
shell: cmd
- name: Build frontend
run: cd web; npm ci; npm run build
run: cd web && npm ci && npm run build
shell: cmd
- name: Build Tauri bundles
run: cd web; npx tauri build
run: cd web && set PATH=%USERPROFILE%\.cargo\bin;%PATH% && npx tauri build
shell: cmd
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
@@ -50,13 +59,15 @@ jobs:
release:
needs: [build-linux, build-windows]
runs-on: linux
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
- name: Create release
uses: softprops/action-gh-release@v2
uses: actions/gitea-release-action@v3
env:
GITEA_TOKEN: ${{ secrets.RELEASE_TOKEN }}
with:
tag_name: ${{ github.ref_name }}
files: |
linux-bundles/*
windows-bundles/*
generate_release_notes: true