ERA-60183,ERA-60184,ERA-60186: controller 0.5.3 release #365
Workflow file for this run
This file contains hidden or 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: Linting Charts | |
| on: push | |
| jobs: | |
| linting: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - name: Set up chart-testing | |
| uses: helm/chart-testing-action@v2.8.0 | |
| - name: Run chart-testing (lint-changed) | |
| id: list-changed | |
| run: | | |
| changed=$(ct list-changed --target-branch master) | |
| if [[ -n "$changed" ]]; then | |
| echo "::set-output name=changed::true" | |
| fi | |
| - name: Run chart-testing (lint) | |
| run: ct lint --target-branch master | |
| - name: ArtifactHUB Lint | |
| env: | |
| AH_CLI_VERSION: 1.6.0 | |
| run: | | |
| curl -LO https://github.com/artifacthub/hub/releases/download/v${AH_CLI_VERSION}/ah_${AH_CLI_VERSION}_linux_amd64.tar.gz | |
| tar xvzf ah_${AH_CLI_VERSION}_linux_amd64.tar.gz | |
| ./ah lint |