ci: auto-create GitHub release on tag push

This commit is contained in:
2026-01-02 19:46:29 +01:00
parent 6426850714
commit 5572cd3a0d

27
.github/workflows/release.yml vendored Normal file
View File

@@ -0,0 +1,27 @@
name: Create Release
on:
push:
tags:
- 'v*'
permissions:
contents: write
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
generate_release_notes: true
body: |
See the [full release notes on Gitea](https://somegit.dev/vikingowl/vessel/releases) for detailed information.
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}