Skip to content

Merge branch 'main' of github.com:Worth-NL/helm-charts #2

Merge branch 'main' of github.com:Worth-NL/helm-charts

Merge branch 'main' of github.com:Worth-NL/helm-charts #2

Workflow file for this run

name: Release charts
on:
push:
branches:
- main
jobs:
docs:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
with:
fetch-depth: 0
- name: Run helm-docs
uses: losisin/helm-docs-github-action@v1.2.1
with:
git-push: true
git-push-user-name: "${{ github.actor }}"
git-push-user-email: "${{ github.actor }}@users.noreply.github.com"
git-commit-message: "🧹 update chart documentation"
release:
if: ${{ always() }}
needs: [docs]
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
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: Install Helm
uses: azure/setup-helm@v4
- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.6.0
with:
charts_dir: "./"
packages_with_index: true
skip_existing: true
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
CR_PACKAGE_PATH: .deploy