Files
7000pctAUTO 383a9bd3b0
Some checks failed
CI / test (push) Failing after 9s
CI / build (push) Has been skipped
Add Gitea Actions workflow: release.yml
2026-01-30 03:24:06 +00:00

35 lines
722 B
YAML

name: Release
on:
push:
tags:
- 'v*'
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install build
run: pip install build
- name: Build package
run: python -m build
- name: Create Release
uses: https://gitea.com/actions/release-action@main
with:
files: |
dist/**/*.whl
dist/**/*.tar.gz
title: ${{ github.ref_name }}
body: 'Release ${{ github.ref_name }}'
draft: false
prerelease: false