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:
push:
@ -52,12 +52,12 @@ jobs:
- 'charts/ingress-nginx/Chart.yaml'
- 'charts/ingress-nginx/values.yaml'
chart:
name: Release Chart
release:
name: Release
runs-on: ubuntu-latest
permissions:
contents: write # needed to write releases
contents: write
needs:
- changes

View file

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