mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-25 08:46:22 +02:00
ci(desktop): add release workflow skeleton with tag trigger and matrix
This commit is contained in:
parent
fb1db6c891
commit
71e87f302b
1 changed files with 17 additions and 0 deletions
17
.github/workflows/desktop-release.yml
vendored
Normal file
17
.github/workflows/desktop-release.yml
vendored
Normal 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
|
||||||
Loading…
Add table
Add a link
Reference in a new issue