Skip to content

Release Chart

Release Chart #3

name: Release Chart
run-name: Release Chart
on:
pull_request:
push:
paths:
- ./src/helm/desk/**
jobs:
release:

Check failure on line 11 in .github/workflows/release-helmchart.yml

View workflow run for this annotation

GitHub Actions / Release Chart

Invalid workflow file

The workflow is not valid. .github/workflows/release-helmchart.yml (Line: 11, Col: 3): The workflow must contain at least one job with no dependencies.
needs: lint-helmfile
if: github.event_name == 'push'
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Cleanup
run: rm -rf ./src/helm/extra
- name: Install Helm
uses: azure/setup-helm@v4
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
- name: Publish Helm charts
uses: numerique-gouv/helm-gh-pages@add-overwrite-option
with:
charts_dir: ./src/helm
linting: on
token: ${{ secrets.GITHUB_TOKEN }}