mirror of
https://github.com/external-secrets/external-secrets.git
synced 2024-12-14 11:57:59 +00:00
fix: run helm release on release branch as well (#2444)
Signed-off-by: Moritz Johner <beller.moritz@googlemail.com>
This commit is contained in:
parent
891df5553a
commit
8c2c727205
1 changed files with 3 additions and 1 deletions
4
.github/workflows/helm.yml
vendored
4
.github/workflows/helm.yml
vendored
|
@ -86,7 +86,9 @@ jobs:
|
|||
make helm.generate
|
||||
- name: Run chart-releaser
|
||||
uses: helm/chart-releaser-action@v1.5.0
|
||||
if: github.ref == 'refs/heads/main'
|
||||
if: |
|
||||
github.ref == 'refs/heads/main' ||
|
||||
startsWith(github.ref, 'refs/heads/release-')
|
||||
env:
|
||||
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
||||
CR_RELEASE_NAME_TEMPLATE: "helm-chart-{{ .Version }}"
|
||||
|
|
Loading…
Reference in a new issue