334d5d769f
renovate/stability-days Updates have met minimum release age requirement
CI / Test (action.json) (push) Successful in 9s
CI / Test (bun-npm.json) (push) Successful in 3s
CI / Test (docker-compose.json) (push) Successful in 2s
CI / Test (common.json) (push) Successful in 8s
CI / Test (golang.json) (push) Successful in 3s
CI / Test (k8s.json) (push) Successful in 2s
CI / Test (helm.json) (push) Successful in 9s
CI / Format (push) Successful in 6s
34 lines
929 B
YAML
34 lines
929 B
YAML
name: CD
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- "action.json"
|
|
- "bun-npm.json"
|
|
- "common.json"
|
|
- "docker-compose.json"
|
|
- "golang.json"
|
|
- "helm.json"
|
|
- "k8s.json"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
release:
|
|
name: Release
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Increment tag
|
|
id: tag
|
|
uses: https://gitea.t000-n.de/t.behrendt/conventional-semantic-git-tag-increment@3ab82e6aa1db388a34562f5ce6eedb598651d916 # 0.1.42
|
|
with:
|
|
token: ${{ secrets.GITEA_TOKEN }}
|
|
prerelease: ${{ github.event_name == 'workflow_dispatch' }}
|
|
- uses: https://gitea.t000-n.de/t.behrendt/actions/release-git-tag@7f9ed2bccd9161d124284619464c5dc5b15b79c0 # 0.2.11
|
|
with:
|
|
tag: ${{ steps.tag.outputs.new-tag }}
|