Compare commits
15 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 38344ad9e8 | |||
| c4097960ef | |||
| 72a373b703 | |||
| 9555d6ea73 | |||
| d9ae7d7ff4 | |||
| b3857cc1ca | |||
| 44a45beccc | |||
| 3610c5de66 | |||
| 979fcd85a9 | |||
| 69bdd11b2a | |||
| acea8461af | |||
| 9b5ee7387a | |||
| 957db57cca | |||
| 1d3e7df2fa | |||
| 2df0f6b2c3 |
@@ -1,15 +0,0 @@
|
||||
name: Release Git tag
|
||||
description: Release the Git tag
|
||||
|
||||
inputs:
|
||||
tag:
|
||||
description: The tag to release
|
||||
required: true
|
||||
|
||||
runs:
|
||||
using: "composite"
|
||||
steps:
|
||||
- shell: bash
|
||||
run: |
|
||||
git tag ${{ inputs.tag }}
|
||||
git push origin ${{ inputs.tag }}
|
||||
@@ -4,20 +4,22 @@ on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
release:
|
||||
name: Release
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v5
|
||||
- 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@0.1.1
|
||||
uses: https://gitea.t000-n.de/t.behrendt/conventional-semantic-git-tag-increment@9841c96e72d4fc1ecec620e91e213895341cce86 # 0.1.22
|
||||
with:
|
||||
token: ${{ secrets.GITEA_TOKEN }}
|
||||
- uses: ./.gitea/actions/release-git-tag
|
||||
prerelease: ${{ github.event_name == 'workflow_dispatch' }}
|
||||
- uses: https://gitea.t000-n.de/t.behrendt/actions/release-git-tag@8a04fa92474f770e525b1e6dd420b471da15c222 # 0.1.0
|
||||
with:
|
||||
tag: ${{ steps.tag.outputs.new-tag }}
|
||||
|
||||
@@ -16,7 +16,7 @@ jobs:
|
||||
- "common.json"
|
||||
- "docker-compose.json"
|
||||
steps:
|
||||
- uses: actions/checkout@v5
|
||||
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
|
||||
- name: Validate "${{ matrix.json-file }}"
|
||||
uses: https://gitea.t000-n.de/t.behrendt/validate-json-by-json-schema-action@0.1.2
|
||||
with:
|
||||
|
||||
@@ -1,22 +0,0 @@
|
||||
name: Prerelease
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
prerelease:
|
||||
name: Prerelease
|
||||
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 }}
|
||||
prerelease: true
|
||||
- uses: ./.gitea/actions/release-git-tag
|
||||
with:
|
||||
tag: ${{ steps.tag.outputs.new-tag }}
|
||||
@@ -1,5 +1,6 @@
|
||||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"dependencyDashboard": true,
|
||||
"semanticCommits": "enabled"
|
||||
"semanticCommits": "enabled",
|
||||
"extends": ["config:best-practices", ":semanticCommitTypeAll(chore)"]
|
||||
}
|
||||
|
||||
10
helm.json
10
helm.json
@@ -13,5 +13,13 @@
|
||||
"helmfile": {
|
||||
"enabled": true,
|
||||
"addLabels": ["deps", "helm"]
|
||||
}
|
||||
},
|
||||
"hostRules": [
|
||||
{
|
||||
"matchHost": "https://gitea.t000-n.de/api/packages/t.behrendt/helm",
|
||||
"hostType": "helm",
|
||||
"username": "{{ secrets.HELM_REGISTRY_USER }}",
|
||||
"password": "{{ secrets.HELM_REGISTRY_PASSWORD }}"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
1
k8s.json
1
k8s.json
@@ -2,7 +2,6 @@
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"kubernetes": {
|
||||
"enabled": true,
|
||||
"fileMatch": ["^k8s/*\\.yaml$"],
|
||||
"labels": ["deps", "k8s"]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"extends": [
|
||||
"local>t.behrendt/renovate-configs:common"
|
||||
"local>t.behrendt/renovate-configs:common",
|
||||
"local>t.behrendt/renovate-configs:action"
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user