👷(helm) fix typo in the ci

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'.
```
This commit is contained in:
Jacques ROUSSEL
2025-01-09 18:10:10 +01:00
committed by aleb_the_flash
parent 3e4a7058d2
commit 7ad9015a6b

View File

@@ -10,21 +10,7 @@ on:
- ./src/helm/meet/** - ./src/helm/meet/**
jobs: 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: release:
needs: helmfile-lint
if: github.event_name == 'push' if: github.event_name == 'push'
permissions: permissions:
contents: write contents: write
@@ -47,5 +33,5 @@ jobs:
uses: numerique-gouv/helm-gh-pages@add-overwrite-option uses: numerique-gouv/helm-gh-pages@add-overwrite-option
with: with:
charts_dir: ./src/helm charts_dir: ./src/helm
linting: off linting: on
token: ${{ secrets.GITHUB_TOKEN }} token: ${{ secrets.GITHUB_TOKEN }}