-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (40 loc) · 1.36 KB
/
release-gui-win.yml
File metadata and controls
46 lines (40 loc) · 1.36 KB
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
name: Debug GUI Windows Artifact
on:
workflow_dispatch:
inputs:
version:
description: 'Version to rebuild for debugging (without v prefix, e.g. 2026.10213.0)'
required: true
type: string
permissions:
contents: read
jobs:
build-gui-win-debug:
runs-on: windows-latest
timeout-minutes: 45
steps:
- uses: actions/checkout@v6
- uses: ./.github/actions/setup-node-pnpm
- uses: ./.github/actions/setup-tauri
with:
signing-private-key: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }}
signing-private-key-password: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY_PASSWORD }}
version: ${{ inputs.version }}
- name: Build GUI
working-directory: ./gui
run: pnpm tauri build
- name: List bundle output (debug)
shell: bash
run: |
echo "=== Finding all bundle artifacts ==="
find target -path '*/bundle/*' -type f \( -name '*.exe' -o -name '*.sig' \) 2>/dev/null || echo 'No bundle files found'
- name: Upload artifacts
uses: actions/upload-artifact@v7
with:
name: debug-gui-windows-latest
path: |
target/*/release/bundle/**/*.exe
target/*/release/bundle/**/*.sig
target/release/bundle/**/*.exe
target/release/bundle/**/*.sig
if-no-files-found: error