Skip to content

Commit

Permalink
fix: upgrade git tag on release
Browse files Browse the repository at this point in the history
  • Loading branch information
jstrachan committed Mar 24, 2021
1 parent 8e3c2c7 commit 65b83e1
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .lighthouse/jenkins-x/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,17 @@ spec:
resources: {}
- name: release-chart
resources: {}
- name: upload-binaries
resources: {}
script: |
#!/bin/bash
source .jx/variables.sh
git add * || true
git add * || true
git commit -a -m "chore: release $VERSION" --allow-empty
git tag -fa v$VERSION -m "Release version $VERSION"
git push --force origin v$VERSION
- name: promote-release
resources: {}
podTemplate: {}
Expand Down

0 comments on commit 65b83e1

Please sign in to comment.