-
Notifications
You must be signed in to change notification settings - Fork 0
51 lines (44 loc) · 1.58 KB
/
release-gui-linux.yml
File metadata and controls
51 lines (44 loc) · 1.58 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
47
48
49
50
51
name: Debug GUI Linux 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-linux-debug:
runs-on: ubuntu-24.04
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 '*.AppImage' -o -name '*.deb' -o -name '*.rpm' -o -name '*.sig' \) 2>/dev/null || echo 'No bundle files found'
- name: Upload artifacts
uses: actions/upload-artifact@v7
with:
name: debug-gui-ubuntu-24.04
path: |
target/*/release/bundle/**/*.AppImage
target/release/bundle/**/*.AppImage
target/*/release/bundle/**/*.deb
target/release/bundle/**/*.deb
target/*/release/bundle/**/*.rpm
target/release/bundle/**/*.rpm
target/*/release/bundle/**/*.sig
target/release/bundle/**/*.sig
if-no-files-found: error