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.
1 parent 0866dad commit 43de60aCopy full SHA for 43de60a
Makefile
@@ -175,4 +175,18 @@ mypy3: ${PYSOURCES}
175
--warn-redundant-casts \
176
cwltool
177
178
+release: FORCE
179
+ ./release-test.sh
180
+ . testenv2/bin/activate && \
181
+ testenv2/src/${MODULE}/setup.py sdist bdist_wheel && \
182
+ pip install twine && \
183
+ twine upload testenv2/src/${MODULE}/dist/* && \
184
+ git tag ${VERSION} && git push --tags
185
+
186
FORCE:
187
188
+# Use this to print the value of a Makefile variable
189
+# Example `make print-VERSION`
190
+# From https://www.cmcrossroads.com/article/printing-value-makefile-variable
191
+print-% : ; @echo $* = $($*)
192
0 commit comments