- Add missing commit_username and commit_email parameters - This should resolve the 'gzip: invalid magic' error in the Helm GitHub Pages action
26 lines
604 B
YAML
26 lines
604 B
YAML
name: "helm: publish charts"
|
|
on:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
|
|
permissions:
|
|
contents: write
|
|
pages: write
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
|
|
- name: Publish Helm charts
|
|
uses: stefanprodan/helm-gh-pages@master
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
charts_dir: k8s/charts
|
|
target_dir: helm
|
|
branch: gh-pages
|
|
helm_version: v3.18.4
|
|
commit_username: chrislusf
|
|
commit_email: chrislusf@users.noreply.github.com
|