mirror of
https://github.com/Koenkk/zigbee2mqtt.git
synced 2026-07-10 14:01:43 +00:00
b2e8b3e00c
* Initial draft for helm chart * Add CI using helm releaser Add helm chart docummentation Add configuration.yaml values * Set maintainer set right defaults on values.yaml * Add ci to update values on chart * Add chart version on CI * Remove manual update of the chart * Trigger update of Chart.yaml with release_please * Add chart to release-please * Add version to release-please manifest for chart * remove the second release-please * Update appVersion in chart.yaml too * Add make target to generate helm-docs * Generate docs and manage versions in release-please * Add persistent static volumes * Small fixes, ensure no volume works * Fixes for static provisioned volume * Delete yq dependency in CI * Delete Makefile, update release-please to run doc generation directly --------- Co-authored-by: jose <jose.pedrosa@reddit.com>
31 lines
635 B
YAML
31 lines
635 B
YAML
name: Release Charts
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- 'charts/**'
|
|
|
|
jobs:
|
|
release:
|
|
permissions:
|
|
contents: write
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Configure Git
|
|
run: |
|
|
git config user.name "$GITHUB_ACTOR"
|
|
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
|
|
|
|
- name: Run chart-releaser
|
|
uses: helm/chart-releaser-action@v1.6.0
|
|
with:
|
|
skip_existing: true
|
|
env:
|
|
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" |