Skip to content

Commit

Permalink
fix: disable the Release CRD
Browse files Browse the repository at this point in the history
  • Loading branch information
jstrachan committed Mar 30, 2021
1 parent 12e1313 commit e52507e
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .lighthouse/jenkins-x/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,20 @@ spec:
resources: {}
- name: chart-docs
resources: {}
- name: changelog
resources: {}
- image: gcr.io/jenkinsxio/jx-changelog:0.0.36
name: changelog
resources: {}
script: |
#!/usr/bin/env sh
source .jx/variables.sh
if [ -d "charts/$REPO_NAME" ]; then
sed -i -e "s/^version:.*/version: $VERSION/" ./charts/$REPO_NAME/Chart.yaml
sed -i -e "s/repository:.*/repository: $DOCKER_REGISTRY\/$DOCKER_REGISTRY_ORG\/$APP_NAME/" ./charts/$REPO_NAME/values.yaml
sed -i -e "s/tag:.*/tag: $VERSION/" ./charts/$REPO_NAME/values.yaml;
else echo no charts; fi
jx changelog create --verbose --header-file=hack/changelog-header.md --version=$VERSION --rev=$PULL_BASE_SHA --output-markdown=changelog.md --generate-yaml=false
- name: upload-binaries
resources: {}
- name: multi-arch-images
Expand Down

0 comments on commit e52507e

Please sign in to comment.