-
Notifications
You must be signed in to change notification settings - Fork 0
36 lines (32 loc) · 1.1 KB
/
release-gui-linux.yml
File metadata and controls
36 lines (32 loc) · 1.1 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
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/build-gui-platform
with:
tauri-command: pnpm tauri build
artifact-name: debug-gui-ubuntu-24.04
artifact-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
signing-private-key: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY }}
signing-private-key-password: ${{ secrets.TAURI_SIGNING_PRIVATE_KEY_PASSWORD }}
version: ${{ inputs.version }}