Skip to content

Commit

Permalink
updating make file to streamline releasing
Browse files Browse the repository at this point in the history
  • Loading branch information
lord-skinner committed Dec 21, 2024
1 parent 9161efd commit d5167db
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,10 @@ install:
fi
@echo "Installation successful."
@echo "Ensure you run '$(PROGRAM_NAME)' from the root of your dbt project."

release:
@echo "Releasing $(PROGRAM_NAME)..."
@version=$(shell grep 'Version =' ./version/version.go | awk '{print $$NF}' | tr -d '"') && \
git tag -a $$version -m "Release $$version" && \
git push origin main --follow-tags
@echo "Release successful."
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
package version

const Version = "v0.0.5"
const Version = "v0.0.6"

0 comments on commit d5167db

Please sign in to comment.