Skip to content

Commit

Permalink
publishing v0.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
KnockOutEZ committed Sep 26, 2024
1 parent 989b7ba commit c5704be
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -105,3 +105,14 @@ install_sdks:: install_dotnet_sdk install_python_sdk install_nodejs_sdk
test::
cd examples && go test -v -tags=all -parallel ${TESTPARALLELISM} -timeout 2h

release::
@if [ -n "$(CUSTOM_VERSION)" ]; then \
VERSION="$(CUSTOM_VERSION)"; \
elif [ -z "$(VERSION)" ]; then \
echo "VERSION is not set. Either set VERSION or use CUSTOM_VERSION=x.x.x"; \
exit 1; \
fi; \
echo "Creating release for version v$$VERSION"; \
git tag -a v$$VERSION -m "Release v$$VERSION"; \
git push origin v$$VERSION; \
echo "Release v$$VERSION has been created and pushed"

0 comments on commit c5704be

Please sign in to comment.