We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f87eadd commit 20540b4Copy full SHA for 20540b4
.github/workflows/publish.yml
@@ -25,13 +25,13 @@ jobs:
25
cp README.md charts/common/README.md
26
27
- name: Update version with release version
28
- if: github.event_name == 'release' && github.event.action == 'created'
+ if: github.event_name == 'release' && github.event.action == 'published'
29
shell: bash
30
run: |
31
sed -i 's/0.0.0/${{ github.ref_name }}/' charts/common/Chart.yaml
32
33
- name: Update version with latest version
34
- if: (github.event_name == 'release' && github.event.action == 'created') == false
+ if: (github.event_name == 'release' && github.event.action == 'published') == false
35
36
37
sed -i 's/0.0.0/0.0.0-latest/' charts/common/Chart.yaml
0 commit comments