40fcd1b469
- tauri-action globs for tauri.conf.json honoring .gitignore; the global *.json rule hid it (force-added but still ignore-matched), so detection failed with 'Failed to resolve Tauri path' and it tried to re-init. Negate it like the cuda overlay already is. - rename uploadUpdaterJson -> includeUpdaterJson (valid v0.6.2 input).
58 lines
1.8 KiB
YAML
58 lines
1.8 KiB
YAML
name: Release
|
|
|
|
# Tag pushes mirrored from Gitea (git.jezz.wtf) trigger this on the GitHub
|
|
# mirror. Builds the NSIS installer and attaches it to a DRAFT GitHub Release —
|
|
# review and publish manually.
|
|
on:
|
|
push:
|
|
tags:
|
|
- 'v*'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
release:
|
|
permissions:
|
|
contents: write
|
|
runs-on: windows-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- uses: pnpm/action-setup@v4
|
|
with:
|
|
version: 11
|
|
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 22
|
|
cache: pnpm
|
|
|
|
- name: Install Rust stable
|
|
uses: dtolnay/rust-toolchain@stable
|
|
|
|
- uses: Swatinem/rust-cache@v2
|
|
with:
|
|
workspaces: src-tauri
|
|
|
|
- name: Install frontend dependencies
|
|
run: pnpm install --frozen-lockfile
|
|
|
|
- name: Build and create draft release
|
|
uses: tauri-apps/tauri-action@v0.6.2
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
# Updater artifact signing (Phase 3) — set these repo secrets once
|
|
# the updater keypair exists; empty values are ignored until then.
|
|
TAURI_SIGNING_PRIVATE_KEY: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }}
|
|
TAURI_SIGNING_PRIVATE_KEY_PASSWORD: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY_PASSWORD }}
|
|
with:
|
|
tagName: ${{ github.ref_name }}
|
|
releaseName: 'Phokus v__VERSION__'
|
|
releaseBody: 'See the assets below to download and install this version.'
|
|
releaseDraft: true
|
|
prerelease: false
|
|
includeUpdaterJson: true
|
|
updaterJsonPreferNsis: true
|
|
# Cargo args after `--`: ship the CPU/DirectML build — default
|
|
# features enable candle-cuda, which runners (and most users) lack.
|
|
args: '-- --no-default-features'
|