We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d75b070 commit 1a2b28aCopy full SHA for 1a2b28a
.github/workflows/ci.yml
@@ -203,8 +203,12 @@ jobs:
203
uses: codacy/git-version@2.7.1
204
with:
205
release-branch: main
206
+ - name: 🏗️ Package Helm chart
207
+ run: helm package helm/
208
+ if: github.event_name != 'push' || !endsWith(github.event.base_ref, 'main') || !startsWith(github.ref, 'refs/tags')
209
- name: 🏗️ Package Helm chart
210
run: helm package helm/ --version ${{ steps.version.outputs.version }}
211
+ if: github.event_name == 'push' && endsWith(github.event.base_ref, 'main') && startsWith(github.ref, 'refs/tags')
212
- name: 📤 Upload Helm chart
213
uses: actions/upload-artifact@v7
214
0 commit comments