596a1903ed
renovate/stability-days Updates have met minimum release age requirement
CI / Test (action.json) (pull_request) Successful in 12s
CI / Test (common.json) (pull_request) Successful in 11s
CI / Test (docker-compose.json) (pull_request) Successful in 11s
CI / Test (helm.json) (pull_request) Successful in 11s
CI / Test (k8s.json) (pull_request) Successful in 12s
CI / Test (bun-npm.json) (pull_request) Successful in 1m51s
26 lines
759 B
YAML
26 lines
759 B
YAML
name: CD
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
release:
|
|
name: Release
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Increment tag
|
|
id: tag
|
|
uses: https://gitea.t000-n.de/t.behrendt/conventional-semantic-git-tag-increment@b8806ee0141a44be30e8734dff15001361be100c # 0.1.35
|
|
with:
|
|
token: ${{ secrets.GITEA_TOKEN }}
|
|
prerelease: ${{ github.event_name == 'workflow_dispatch' }}
|
|
- uses: https://gitea.t000-n.de/t.behrendt/actions/release-git-tag@d658186b7db91d5a93dec78794c8585fa98af79c # 0.2.6
|
|
with:
|
|
tag: ${{ steps.tag.outputs.new-tag }}
|