feat: update the release pipeline with helm publish

This commit is contained in:
charlesgauthereau
2026-03-07 11:49:16 +01:00
parent 9602427ca0
commit e27093404b
2 changed files with 47 additions and 1 deletions
+10 -1
View File
@@ -6,7 +6,6 @@ on:
branches:
- main
permissions:
contents: write
packages: write
@@ -73,10 +72,19 @@ jobs:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME_2 }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD_2 }}
publish-helm:
needs: create-release
uses: ./.github/workflows/helm.yml
with:
version: ${{ needs.create-release.outputs.version }}
secrets:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
finalize-release:
needs:
- create-release
- publish-docker
- publish-helm
runs-on: ubuntu-latest
outputs:
release_tag: ${{ steps.publish_release_step.outputs.release_tag }}
@@ -98,6 +106,7 @@ jobs:
notify-discord:
needs:
- publish-docker
- publish-helm
- create-release
- finalize-release
uses: ./.github/workflows/discord.yml