added workflow for release
create release / create release (push) Successful in 6s Details

This commit is contained in:
Camille Frantz 2024-06-03 13:47:16 -05:00
parent 4e53dea29d
commit 5a3ed0de36
Signed by: fyrfli
SSH Key Fingerprint: SHA256:cyNGncrLxKXAgYC96dYNROnQKikLInzrpiMraZdqyhY
1 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,24 @@
on:
push:
tags:
- 'v*'
name: create release
jobs:
build:
name: create release
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v2
- name: create the release
id: create_release
uses: actions/create-release@v1
env:
GITEA_TOKEN: ${{ secrets.PAT }}
GITHUB_TOKEN: ${{ secrets.PAT }}
with:
tag_name: ${{ gitea.ref }}
release_name: release ${{ gitea.ref }}
body: |
releasing ${{ gitea.ref }} for ${{ gitea.repository }}
make_latest: true