THIS IS A TEST INSTANCE. ALL YOUR CHANGES WILL BE LOST!!!!
...
Create a new Git tag for the released version by copying the tag for the final release candidate, as follows:
Code Block |
---|
git tag -s "release-${RELEASE_VERSION}" ${TAG} |
For the GoLang SDK we we also need to push another release tag
Code Block |
---|
git tag -s "statefun-sdk-go/v${RELEASE_VERSION}" ${TAG} |
Code Block |
---|
git push <remote> refs/tags/release-${RELEASE_VERSION}
git push <remote> refs/tags/statefun-sdk-go/v${RELEASE_VERSION} |
Mark the version as released in JIRA
...