Workflow: tag and create release
This commit is contained in:
parent
e50b764d85
commit
ecdfc7445e
19
.gitea/workflows/release/create-release-on-tag.yaml
Normal file
19
.gitea/workflows/release/create-release-on-tag.yaml
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
name: Create release
|
||||||
|
run-name: Create release on tag
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- v*
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
create-release:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: release
|
||||||
|
uses: https://github.com/softprops/action-gh-release@v1
|
||||||
|
with:
|
||||||
|
body_path: ${{ github.workspace }}/.changes/v${{ github.ref }}.md
|
@ -0,0 +1,25 @@
|
|||||||
|
name: Tag next release
|
||||||
|
run-name: Create a tag when PR is merged
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request_target:
|
||||||
|
types:
|
||||||
|
- closed
|
||||||
|
branches:
|
||||||
|
- 'main'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
tag_if_merged:
|
||||||
|
if: github.event.pull_request.merged == true and startsWith(github.head_ref, 'release/')
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: changie latest
|
||||||
|
id: changie_latest
|
||||||
|
uses: https://github.com/miniscruff/changie-action@v2
|
||||||
|
with:
|
||||||
|
version: latest
|
||||||
|
args: 'latest'
|
||||||
|
- name: create a tag
|
||||||
|
uses: https://github.com/rickstaa/action-create-tag@v1
|
||||||
|
with:
|
||||||
|
tag: ${{ steps.changie_latest.outputs.output }}
|
Loading…
Reference in New Issue
Block a user