Files
test-release-merging/.gitea/workflows/release.yaml
Tim Basten 888cae3db2
All checks were successful
release / release (push) Successful in 5s
update
2026-02-06 11:20:01 +08:00

25 lines
436 B
YAML

name: release
on:
push:
tags:
- "*"
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Create Gitea Release
uses: akkuman/gitea-release-action@v1
with:
token: ${{ secrets.GITEA_TOKEN }}
tag_name: ${{ gitea.ref_name }}
name: ${{ gitea.ref_name }}
body: "Automated release"