From 9c561d24a91ce67ab66b16917b6ab012b857d7a6 Mon Sep 17 00:00:00 2001 From: Marco Ebert Date: Thu, 26 Sep 2024 08:26:29 +0200 Subject: [PATCH] CI: Rename `helm` to `chart`. --- .github/workflows/{helm.yaml => chart.yaml} | 8 ++++---- .github/workflows/ci.yaml | 10 +++++----- 2 files changed, 9 insertions(+), 9 deletions(-) rename .github/workflows/{helm.yaml => chart.yaml} (96%) diff --git a/.github/workflows/helm.yaml b/.github/workflows/chart.yaml similarity index 96% rename from .github/workflows/helm.yaml rename to .github/workflows/chart.yaml index f7a68af1a..5cd03deb8 100644 --- a/.github/workflows/helm.yaml +++ b/.github/workflows/chart.yaml @@ -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 diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 5a8e7a2da..e7c5c1ff4 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -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' }}