CI: Rename helm to chart.

This commit is contained in:
Marco Ebert 2024-09-26 08:26:29 +02:00
parent 24a9f972ff
commit 0283711767
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

@ -208,8 +208,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
@ -262,13 +262,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' }}