Fix release workflow steps sequence #7
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: check-helm-chart | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
check-helm-chart: | |
runs-on: ubuntu-latest | |
steps: | |
- id: checkout-anycable-helm | |
name: Checkout anycable-helm | |
uses: actions/checkout@v4 | |
with: | |
path: anycable-helm/ | |
- id: setup-helm | |
name: Setup Helm | |
uses: azure/setup-helm@v3 | |
- id: run-linter | |
name: Run Helm Linter | |
run: helm lint anycable-helm/anycable-go |