CI: Rename helm to chart.

This commit is contained in:
Marco Ebert 2024-09-26 08:26:29 +02:00 committed by k8s-infra-cherrypick-robot
parent 25cf0fee3e
commit 9c561d24a9
2 changed files with 9 additions and 9 deletions

View file

@ -1,4 +1,4 @@
name: Helm name: Chart
on: on:
push: push:
@ -52,12 +52,12 @@ jobs:
- 'charts/ingress-nginx/Chart.yaml' - 'charts/ingress-nginx/Chart.yaml'
- 'charts/ingress-nginx/values.yaml' - 'charts/ingress-nginx/values.yaml'
chart: release:
name: Release Chart name: Release
runs-on: ubuntu-latest runs-on: ubuntu-latest
permissions: permissions:
contents: write # needed to write releases contents: write
needs: needs:
- changes - changes

View file

@ -192,8 +192,8 @@ jobs:
path: docker.tar.gz path: docker.tar.gz
retention-days: 5 retention-days: 5
helm-lint: chart-lint:
name: Helm chart lint name: Chart / Lint
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: needs:
- changes - changes
@ -246,13 +246,13 @@ jobs:
./ah lint -p charts/ingress-nginx || exit 1 ./ah lint -p charts/ingress-nginx || exit 1
rm -f ./ah ./ah_1.5.0_linux_amd64.tar.gz rm -f ./ah ./ah_1.5.0_linux_amd64.tar.gz
helm-test: chart-test:
name: Helm chart testing name: Chart / Test
runs-on: ubuntu-latest runs-on: ubuntu-latest
needs: needs:
- changes - changes
- build - build
- helm-lint - chart-lint
if: | if: |
(needs.changes.outputs.charts == 'true') || (needs.changes.outputs.baseimage == 'true') || ${{ github.event.workflow_dispatch.run_e2e == 'true' }} (needs.changes.outputs.charts == 'true') || (needs.changes.outputs.baseimage == 'true') || ${{ github.event.workflow_dispatch.run_e2e == 'true' }}