Skip to content

Commit

Permalink
Release v0.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
elephantum committed Sep 24, 2024
1 parent a531a68 commit 73b9f7a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
VERSION := $(shell poetry version -s)

build-example:
docker build -f example/Dockerfile .

Expand All @@ -12,3 +14,10 @@ lint:
black --line-length=120 datapipe_app example
flake8 --max-line-length=120 datapipe_app
mypy -p datapipe_app --ignore-missing-imports --follow-imports=silent --namespace-packages

release: build
git commit -am "Release v$(VERSION)"
git tag "v$(VERSION)"
git push origin "v$(VERSION)"
poetry build
poetry publish

0 comments on commit 73b9f7a

Please sign in to comment.