ci(desktop): add release workflow skeleton with tag trigger and matrix

This commit is contained in:
CREDO23 2026-03-19 20:49:30 +02:00
parent fb1db6c891
commit 71e87f302b

17
.github/workflows/desktop-release.yml vendored Normal file
View file

@ -0,0 +1,17 @@
name: Desktop Release
on:
push:
tags:
- 'v*'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
steps:
- name: Checkout
uses: actions/checkout@v4