Skip to content

Update Chart.yaml

Update Chart.yaml #348

Workflow file for this run

name: Chart Test
on:
push:
pull_request:
branches:
- main
jobs:
# lint the charts
lint:
runs-on: ubuntu-latest
if: github.event_name == 'push'
steps:
- uses: actions/checkout@v2
- name: Lint
run: ./lint.sh
eval:
runs-on: ubuntu-latest
needs:
- lint
steps:
- uses: actions/checkout@v2
- name: Eval
run: |
.github/build/install.sh
./eval.sh
doc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: generate docs
run:
docker run --rm --volume "$(pwd):/helm-docs" -u $(id -u) jnorwood/helm-docs:latest
- name: Commit files
continue-on-error: true
run: |
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git commit -m "Update helm documentation" -a
- name: Push changes
continue-on-error: true
uses: ad-m/github-push-action@master
with:
branch: ${{ github.ref }}