Update Chart.yaml #590
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@v4 | |
with: | |
fetch-depth: 0 | |
- name: gitLeaks | |
uses: zricethezav/[email protected] | |
- name: Install chart-testing (lint) | |
uses: helm/chart-testing-action@v2 | |
- name: Run chart-testing (list-changed) | |
id: list-changed | |
run: | | |
changed=$(ct list-changed) | |
if [[ -n "$changed" ]]; then | |
echo "changed=true" >> $GITHUB_OUTPUT | |
fi | |
- name: Run chart-testing (lint) | |
run: ct lint | |
- name: Create kind cluster | |
uses: helm/kind-action@v1 | |
# Only build a kind cluster if there are chart changes to test. | |
if: ${{ steps.list-changed.outputs.changed == 'true' }} | |
- name: Run chart-testing (install) | |
if: ${{ steps.list-changed.outputs.changed == 'true' }} | |
run: ct install | |
release: | |
runs-on: ubuntu-latest | |
needs: lint | |
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Configure Git | |
run: | | |
git config user.name "$GITHUB_ACTOR" | |
git config user.email "[email protected]" | |
- name: Run chart-releaser | |
uses: helm/[email protected] | |
env: | |
CR_TOKEN: "${{ secrets.CR_TOKEN }}" |