Add Gitea Actions release workflow for macOS GUI build
release / macos-gui (push) Failing after 31s

This commit is contained in:
2026-09-22 03:13:58 +00:00
parent c11cbd4250
commit 6de05ebb00
2 changed files with 24 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
name: release
on:
push:
tags:
- "v*"
jobs:
macos-gui:
runs-on: macos
steps:
- uses: actions/checkout@v4
with:
# setuptools_scm needs full history/tags to compute the version
fetch-depth: 0
- name: Build GUI app zip and dist packages
run: uv run scripts/guibuild.py
- name: Create Gitea release and upload assets
env:
GITEA_TOKEN: ${{ secrets.GITEA_TOKEN }}
run: uv run scripts/release.py
+1
View File
@@ -19,3 +19,4 @@ package-lock.json
# Dotfiles
.*
!.gitignore
!.gitea/