All checks were successful
renovate/stability-days Updates have met minimum release age requirement
25 lines
597 B
YAML
25 lines
597 B
YAML
name: CD
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
release:
|
|
name: Release
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Increment tag
|
|
id: tag
|
|
uses: https://gitea.t000-n.de/t.behrendt/conventional-semantic-git-tag-increment@e2d3fdbd16fb4b0ba78bec3003e6141dc5503628 # 0.1.23
|
|
with:
|
|
token: ${{ secrets.GITEA_TOKEN }}
|
|
- name: Push tag
|
|
uses: ./release-git-tag
|
|
with:
|
|
tag: ${{ steps.tag.outputs.new-tag }}
|