Bump fluffy 0.2.1 and Chart 0.9.14 #455
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 Release Charts | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Fetch history | |
run: git fetch --prune --unshallow | |
- name: gitLeaks | |
uses: zricethezav/gitleaks-action@v1.3.0 | |
- name: Install chart-testing (lint) | |
uses: helm/chart-testing-action@v2.1.0 | |
- name: Run chart-testing (list-changed) | |
id: list-changed | |
run: | | |
changed=$(ct list-changed) | |
if [[ -n "$changed" ]]; then | |
echo "::set-output name=changed::true" | |
fi | |
- name: Run chart-testing (lint) | |
run: ct lint | |
- name: Create kind cluster | |
uses: helm/kind-action@v1.2.0 | |
# Only build a kind cluster if there are chart changes to test. | |
if: ${{ steps.list-changed.outputs.changed == 'true' }} | |
- name: Run chart-testing (install) | |
run: ct install | |
if: ${{ steps.list-changed.outputs.changed == 'true' }} | |
release: | |
runs-on: ubuntu-latest | |
needs: lint | |
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Fetch history | |
run: git fetch --prune --unshallow | |
- name: Configure Git | |
run: | | |
git config user.name "$GITHUB_ACTOR" | |
git config user.email "$GITHUB_ACTOR@users.noreply.github.com" | |
- name: Run chart-releaser | |
uses: helm/chart-releaser-action@v1.0.0-rc.2 | |
env: | |
CR_TOKEN: "${{ secrets.CR_TOKEN }}" | |