mirror of
https://github.com/project-zot/zot.git
synced 2024-12-16 21:56:37 -05:00
fix: prevent releases of helm chart with pre-releases of zot (#2755)
Signed-off-by: Andreea-Lupu <andreealupu1470@yahoo.com>
This commit is contained in:
parent
da923ae232
commit
f17dd2608a
1 changed files with 1 additions and 1 deletions
2
.github/workflows/publish.yaml
vendored
2
.github/workflows/publish.yaml
vendored
|
@ -279,7 +279,7 @@ jobs:
|
|||
sarif_file: 'trivy-results.sarif'
|
||||
|
||||
update-helm-chart:
|
||||
if: github.event_name == 'release' && github.event.action== 'published'
|
||||
if: ${{ github.event_name == 'release' && github.event.action == 'published' && !contains(github.event.release.tag_name, 'rc') }}
|
||||
needs: push-multiarch-image
|
||||
name: Update Helm Chart
|
||||
permissions:
|
||||
|
|
Loading…
Reference in a new issue