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