Skip to content

Commit 68dc21d

Browse files
authored
Merge branch 'master' into singularity-support
2 parents 2f0ad08 + 52c276d commit 68dc21d

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

Makefile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,4 +176,18 @@ mypy3: ${PYSOURCES}
176176
--warn-redundant-casts \
177177
cwltool
178178

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+
179187
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

Comments
 (0)