Files
test-release-merging/.gitea/workflows/release.yaml
Tim Basten 78253e9314
Some checks failed
release / release (push) Failing after 3s
update
2026-02-06 11:14:45 +08:00

25 lines
448 B
YAML

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