Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
git tag -s ${TAG} -m "${TAG}"
git tag -s "statefun-sdk-go/v${RELEASE_VERSION}-rc${RC_NUM}" -m "${TAG}"

We now need to do several things:

...




Code Block
git tag -s "release-${RELEASE_VERSION}" refs/tags/${TAG} -m "Release Stateful Functions ${RELEASE_VERSION}"

For the GoLang SDK we we also need to push another release tag

Code Block
git tag -s "statefun-sdk-go/v${RELEASE_VERSION}" refs/tags/${TAG} -m "Release Stateful Functions ${RELEASE_VERSION}"
Don't forget to push the tags via


Code Block
git push <remote> refs/tags/release-${RELEASE_VERSION}
git push <remote> refs/tags/statefun-sdk-go/v${RELEASE_VERSION}


...