File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 9
9
export PATH := $(abspath ${VENVBIN}) :${PATH}
10
10
11
11
12
- .PHONY : init test build benchmark
12
+ .PHONY : init test build benchmark publish
13
13
14
14
# Default target executed when no arguments are given to make.
15
15
default_target : build test
@@ -19,9 +19,9 @@ help: ## Show this help
19
19
20
20
# ###############################
21
21
22
- all : depend build test # # Get dependencies, build and test
22
+ all : depend build test # # Get dependencies, clean, build and test
23
23
24
- build : ${VENV} clean # # Build and clean
24
+ build : ${VENV} clean # # Clean and build
25
25
python setup.py bdist_wheel
26
26
ls -lh dist
27
27
@@ -49,3 +49,6 @@ clean: ## Clean build artifacts
49
49
rm -rf build/
50
50
rm -rf dist/
51
51
rm -rf * .egg-info
52
+
53
+ publish : # # Publish the package built by `make build`
54
+ python -m twine upload --verbose dist/objectbox* .whl
You can’t perform that action at this time.
0 commit comments