Update azure/setup-helm action to v4 (#69) #42
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: Chart Testing and Release | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'chart/**' | |
- '.github/workflows/chart-testing.yaml' | |
jobs: | |
lint-test-chart: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Helm | |
uses: azure/setup-helm@v4 | |
with: | |
version: v3.12.0 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
check-latest: true | |
- name: Set up chart-testing | |
uses: helm/[email protected] | |
- name: Run chart-testing (lint) | |
run: | | |
ct lint --charts chart/kronic --target-branch ${{ github.event.repository.default_branch }} | |
- name: Create kind cluster | |
uses: helm/[email protected] | |
- name: Run chart-testing (install) | |
run: | | |
ct install --charts chart/kronic \ | |
--helm-extra-args '--timeout 60s' \ | |
--target-branch ${{ github.event.repository.default_branch }} | |
release-chart: | |
if: github.ref == 'refs/heads/main' | |
needs: lint-test-chart | |
permissions: | |
contents: write | |
runs-on: ubuntu-latest | |
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: Install Helm | |
uses: azure/setup-helm@v4 | |
with: | |
version: 'v3.12.3' | |
- name: Generate Chart Readme | |
run: ./.github/gen-chart-readme.sh | |
- name: Run chart-releaser | |
uses: helm/[email protected] | |
with: | |
charts_dir: ./chart | |
env: | |
CR_SKIP_EXISTING: "true" | |
CR_RELEASE_NAME_TEMPLATE: "{{ .Name }}-chart-{{ .Version }}" | |
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" |