Files
7000pctAUTO f8e18185ff
Some checks failed
CI / test (push) Failing after 5s
CI / lint (push) Failing after 6s
Release / release (push) Failing after 6s
Add Gitea Actions workflow: release.yml
2026-01-29 12:46:01 +00:00

34 lines
737 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/**
title: Release ${{ gitea.ref }}
body: See https://github.com/7000pctAUTO/shell-command-generator-cli/releases/tag/${{ gitea.ref }} for changelog
draft: false
prerelease: false