Skip to content

Fix typo in encryptionKey #113

Fix typo in encryptionKey

Fix typo in encryptionKey #113

Workflow file for this run

name: Lint and Test Charts
on: pull_request
jobs:
lint-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Fetch history
run: |
git fetch --prune --unshallow;
echo "commitmsg<<EOF
$(git log --format=%B -n 1 ${{ github.event.after }})
EOF" >> $GITHUB_ENV
- name: Run chart-testing (lint)
id: lint
uses: helm/[email protected]
if: "! contains(env.commitmsg, '[skip lint]')"
with:
command: lint
config: .github/ct.yaml
- name: Create kind cluster
uses: helm/[email protected]
if: "steps.lint.outputs.changed == 'true' && ! contains(env.commitmsg, '[skip install]')"
- name: Run chart-testing (install)
uses: helm/[email protected]
if: "steps.lint.outputs.changed == 'true' && ! contains(env.commitmsg, '[skip install]')"
with:
command: install
config: .github/ct.yaml