We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c4c17da + f1228a7 commit 65f72faCopy full SHA for 65f72fa
Makefile
@@ -11,7 +11,15 @@ pb_compile: pb_clean
11
@protoc -Iriak_pb/src --python_out=riak/pb riak_pb/src/*.proto
12
@python setup.py build_messages
13
14
-release:
+release_sdist:
15
+ifeq ($(RELEASE_GPG_KEYNAME),)
16
+ $(error RELEASE_GPG_KEYNAME must be set to build a release and deploy this package)
17
+else
18
+ @echo "==> Python (sdist release)"
19
+ @python setup.py sdist upload -s -i $(RELEASE_GPG_KEYNAME)
20
+endif
21
+
22
+release: release_sdist
23
ifeq ($(RELEASE_GPG_KEYNAME),)
24
$(error RELEASE_GPG_KEYNAME must be set to build a release and deploy this package)
25
else
0 commit comments