Fix typo in encryptionKey #113
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |