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 7d97072 commit d17fe9aCopy full SHA for d17fe9a
pipeline.gocd.yaml
@@ -162,9 +162,13 @@ pipelines:
162
- script: |
163
set -e
164
165
+ export CHART_VERSION="$(echo $GO_PIPELINE_LABEL | awk -F '-' '{print $1}')"
166
+
167
helm lint helm-charts/${CHART_NAME}
168
- helm package --version "$(echo $GO_PIPELINE_LABEL | awk -F '-' '{print $1}')" --app-version $GO_PIPELINE_LABEL ./helm-charts/${CHART_NAME}
169
+ helm package --version ${CHART_VERSION} --app-version $GO_PIPELINE_LABEL ./helm-charts/${CHART_NAME}
170
171
+ helm push ${CHART_NAME}-${CHART_VERSION}.tgz oci://ghcr.io/snacker-tracker/charts
172
artifacts:
173
- build:
174
source: snacker-tracker-ui-*.tgz
0 commit comments