-
Notifications
You must be signed in to change notification settings - Fork 0
71 lines (60 loc) · 2.03 KB
/
Copy pathbuild.yml
File metadata and controls
71 lines (60 loc) · 2.03 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
name: Build Stage Timer Pro
on:
push:
tags: ["v*"]
workflow_dispatch:
permissions:
contents: write
actions: read
security-events: write
jobs:
build:
strategy:
fail-fast: false
matrix:
include:
- platform: macos-latest
args: "--target universal-apple-darwin"
- platform: windows-latest
args: ""
runs-on: ${{ matrix.platform }}
timeout-minutes: 60
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Rust setup
uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }}
- name: Rust cache
uses: swatinem/rust-cache@v2
with:
workspaces: "./src-tauri -> target"
- name: Sync node version and setup cache
uses: actions/setup-node@v4
with:
node-version: "lts/*"
cache: "npm"
- name: Install frontend dependencies
run: npm install
- name: Build the app
uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tagName: ${{ github.ref_name }}
releaseName: "Stage Timer Pro ${{ github.ref_name }}"
releaseBody: |
🎯 **Stage Timer Pro** - Aplicación profesional de timer para eventos
✨ **Características:**
- ⌨️ Atajos globales (⌘+Shift+Space, ⌘+Shift+R, ⌘+Shift+F)
- 🔔 Notificaciones nativas y badges en dock
- 🎥 Integración con Resolume Arena (OBS + NDI)
- 🖥️ Soporte dual monitor automático
- 🎨 Sistema de branding profesional
📦 **Instaladores disponibles:**
- 🍎 macOS: Stage Timer Pro.dmg (Universal - Intel + Apple Silicon)
- 🪟 Windows: Stage Timer Pro Setup.msi
releaseDraft: false
prerelease: false
args: ${{ matrix.args }}