Skip to content

fix release of helm docs #2

fix release of helm docs

fix release of helm docs #2

Workflow file for this run

name: Generate Helm Docs
on: pull_request
permissions:
contents: write
pull-requests: write
jobs:
generate-helm-docs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Docker
uses: docker/setup-buildx-action@v2
- name: Run helm-docs
run: docker run --rm -v $(pwd):/helm-docs jnorwood/helm-docs:v1.14.2 --chart-search-root=charts --template-files=./.github/helm-docs/_templates.gotmpl --template-files=README.md.gotmpl
- name: Commit & Push changes
uses: actions-js/push@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: ${{ github.event.pull_request.head.ref }}
message: "docs: auto-generate chart docs"