From 7ad9015a6b32240f0e22e79075ba72af5399d49a Mon Sep 17 00:00:00 2001 From: Jacques ROUSSEL Date: Thu, 9 Jan 2025 18:10:10 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7(helm)=20fix=20typo=20in=20the=20ci?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix the following issue : ``` The workflow is not valid. .github/workflows/release-helmchart.yml (Line: 25, Col: 12): Job 'release' depends on unknown job 'helmfile-lint'. ``` --- .github/workflows/release-helm-chart.yaml | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/.github/workflows/release-helm-chart.yaml b/.github/workflows/release-helm-chart.yaml index be97ea7a..97b68e88 100644 --- a/.github/workflows/release-helm-chart.yaml +++ b/.github/workflows/release-helm-chart.yaml @@ -10,21 +10,7 @@ on: - ./src/helm/meet/** jobs: - lint-helmfile: - runs-on: ubuntu-latest - container: - image: ghcr.io/helmfile/helmfile:latest - steps: - - uses: numerique-gouv/action-helmfile-lint@main - with: - app-id: ${{ secrets.APP_ID }} - age-key: ${{ secrets.SOPS_PRIVATE }} - private-key: ${{ secrets.PRIVATE_KEY }} - helmfile-src: "src/helm" - repositories: "meet,secrets" - release: - needs: helmfile-lint if: github.event_name == 'push' permissions: contents: write @@ -47,5 +33,5 @@ jobs: uses: numerique-gouv/helm-gh-pages@add-overwrite-option with: charts_dir: ./src/helm - linting: off + linting: on token: ${{ secrets.GITHUB_TOKEN }}