Release v0.1.5 (#321)

This commit is contained in:
Daniel Sanche 2020-04-13 15:22:40 -07:00 committed by GitHub
parent c4daa1c260
commit 8e85c5bd79
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 409 additions and 408 deletions

View file

@ -40,12 +40,13 @@ fi
# update yaml
"${SCRIPTDIR}"/make-release-artifacts.sh
# create git release / push to master
# create git release / push to new branch
git checkout -b "release/${TAG}"
git add "${SCRIPTDIR}/../release/"
git commit --allow-empty -m "Release $TAG"
log "Pushing k8s manifests to master..."
log "Pushing k8s manifests to release/${TAG}..."
git tag "$TAG"
git push --set-upstream origin "release/${TAG}"
git push --tags
git push origin master
log "Successfully tagged release $TAG."