TEST
This commit is contained in:
parent
744bbdb245
commit
69e1b9a236
24
.forgejo/workflows/release.yaml
Normal file
24
.forgejo/workflows/release.yaml
Normal file
|
@ -0,0 +1,24 @@
|
|||
on:
|
||||
push:
|
||||
tags:
|
||||
- "v*"
|
||||
|
||||
jobs:
|
||||
release:
|
||||
runs-on: docker
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Get release notes from tag
|
||||
run: echo "RELEASE_NOTES=$(git tag -l --format='%(contents)' ${{ env.GITHUB_REF_NAME }})" >> "$GITHUB_ENV"
|
||||
- name: Install Hatch
|
||||
uses: https://github.com/pypa/hatch@install
|
||||
- name: Build project
|
||||
run: hatch build
|
||||
- name: Create a Forgejo release
|
||||
uses: actions/forgejo-release@v2
|
||||
with:
|
||||
direction: upload
|
||||
url: https://git.hamburg.ccc.de
|
||||
release-dir: dist
|
||||
release-notes: ${{ env.RELEASE_NOTES }}
|
||||
token: ${{ env.GITHUB_TOKEN }}
|
Loading…
Reference in a new issue