Skip to content

Commit

Permalink
fix release branch
Browse files Browse the repository at this point in the history
Signed-off-by: Fotis Nikolaidis <[email protected]>
  • Loading branch information
fnikolai authored and blythed committed Jun 20, 2024
1 parent 1147eac commit e81c5fa
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,13 @@ new_release: ## Release a new version of SuperDuperDB
@git add VERSION
@git commit -m "Bump Version $(RELEASE_VERSION)"
@git tag $(RELEASE_VERSION)
# Push release branch and tag
@echo "** Push release-$(RELEASE_VERSION)"
git push --set-upstream origin release-$(RELEASE_VERSION) --tags

# Push branch and set upstream
git push --set-upstream origin release-$(RELEASE_VERSION)

# Push the specific tag
git push origin $(RELEASE_VERSION)


install_devkit: ## Add essential development tools
# Add pre-commit hooks to ensure that no strange stuff are being committed.
Expand Down

0 comments on commit e81c5fa

Please sign in to comment.