All checks were successful
CD / Release (push) Successful in 6s
Reviewed-on: #1 Reviewed-by: branch-buddy <branch-buddy@t00n.de> Co-authored-by: Timo Behrendt <t.behrendt@t00n.de> Co-committed-by: Timo Behrendt <t.behrendt@t00n.de>
24 lines
502 B
YAML
24 lines
502 B
YAML
name: CD
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
release:
|
|
name: Release
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Increment tag
|
|
id: tag
|
|
uses: https://gitea.t000-n.de/t.behrendt/conventional-semantic-git-tag-increment@0.1.1
|
|
with:
|
|
token: ${{ secrets.GITEA_TOKEN }}
|
|
- uses: ./.gitea/actions/release-git-tag
|
|
with:
|
|
tag: ${{ steps.tag.outputs.new-tag }}
|