Skip to content

Commit d6a0e57

Browse files
committed
ci(pipeline): update helm package command for versioning
- Updates the helm package command to use `--version` instead of positional arguments for better clarity. - Ensures consistent version handling in the CI pipeline.
1 parent 53434b5 commit d6a0e57

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/pipeline.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ jobs:
129129
run: cp README.md src/helm/reflector/README.md
130130

131131
- name: helm - package chart
132-
run: helm package --destination .artifacts/helm ${{ env.gitVersion_SemVer }} --app-version ${{ env.gitVersion_SemVer }} src/helm/reflector
132+
run: helm package --destination .artifacts/helm --version ${{ env.gitVersion_SemVer }} --app-version ${{ env.gitVersion_SemVer }} src/helm/reflector
133133

134134
- name: helm - template chart
135135
run: helm template --namespace kube-system reflector .artifacts/helm/reflector${{ env.gitVersion_SemVer }}.tgz > .artifacts/kubectl/reflector-${{ env.gitVersion_SemVer }}.yaml

0 commit comments

Comments
 (0)