Add Gitea Actions workflow: release.yml

This commit is contained in:
2026-01-29 21:25:06 +00:00
parent 8726592939
commit a9dabbfcb6

View File

@@ -0,0 +1,21 @@
name: Release
on:
push:
tags:
- 'v*'
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- run: pip install build
- run: python -m build
- name: Create Release
uses: https://gitea.com/actions/release-action@main
with:
files: dist/**