Files
dev-env-sync/.gitea/workflows/release.yml
7000pctAUTO 0f015b680f
Some checks failed
CI / test (push) Failing after 6s
Add Gitea Actions workflow: release.yml
2026-01-30 04:05:11 +00:00

32 lines
572 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 tools
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/**
draft: false
prerelease: false