Skip to content

Merge pull request #3 from zazuko/fuseki #20

Merge pull request #3 from zazuko/fuseki

Merge pull request #3 from zazuko/fuseki #20

Workflow file for this run

name: Release Charts
on:
push:
branches:
- main
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 "[email protected]"
- name: Install Helm
uses: azure/setup-helm@v4
- name: Run helm-docs
uses: losisin/[email protected]
with:
chart-search-root: zazuko
git-push: true
git-commit-message: "docs: update chart documentation"
template-files: "../.github/docs/helm-docs.tpl.md"
- name: Import GPG key
run: |
echo "${{ secrets.GPG_PRIVATE_KEY }}" | gpg --dearmor --output keyring.gpg
- name: Run chart-releaser
uses: helm/[email protected]
with:
charts_dir: zazuko
skip_existing: true
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
CR_KEY: "Zazuko Helm Charts"
CR_KEYRING: keyring.gpg
CR_SIGN: true