We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 949589f commit 2becda9Copy full SHA for 2becda9
2 files changed
Makefile
@@ -6,8 +6,13 @@ all: build reinstall test
6
7
8
release: all
9
- git tag -a v${VERSION} -m "release v${VERSION}"
10
- git push origin --tags
+ if [ -n "${VERSION}" ]; then \
+ git tag -a v${VERSION} -m "release v${VERSION}"; \
11
+ git push origin --tags; \
12
+ fi
13
+
14
+version:
15
+ @echo ${VERSION}
16
17
18
clean-cover:
xargproject/project.py
@@ -86,8 +86,13 @@ def init_makefile(self):
86
87
88
89
- git tag -a v${{VERSION}} -m "release v${{VERSION}}"
90
+ if [ -n "${{VERSION}}" ]; then \\
+ git tag -a v${{VERSION}} -m "release v${{VERSION}}"; \\
91
+ git push origin --tags; \\
92
93
94
95
+ @echo ${{VERSION}}
96
97
98
0 commit comments