summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReuben Thomas <rrt@sc3d.org>2012-04-12 18:49:30 +0100
committerReuben Thomas <rrt@sc3d.org>2012-04-12 18:49:30 +0100
commit33f86c17d7893a33b0a8a5dfcaf9c0062e07a899 (patch)
tree9a480690b98121e2e88fa4d8c59a7f6067f9a72c
parent1a834d0b14779df725fe7e153930b6923f810272 (diff)
downloadlrexlib-33f86c17d7893a33b0a8a5dfcaf9c0062e07a899.tar.gz
Makefile: make release target push tags, and update woger invocation.
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index a4137f8..c50258a 100644
--- a/Makefile
+++ b/Makefile
@@ -35,7 +35,7 @@ release:
agrep -d 'Release' $(VERSION) NEWS | tail -n +3 | head -n -2 > release-notes && \
git diff --exit-code && \
git tag -a -m "Release tag" rel-`echo $(VERSION) | sed -e 's/\./-/g'` && \
- git push && \
- woger lua-l $(PROJECT) "$(PROJECT)" $(VERSION) "Lua binding for regex libraries" release-notes
- @cat release-notes && echo "Don't forget to release on LuaForge!"
+ git push && git push --tags && \
+ woger lua,github package=$(PROJECT) package_name=$(PROJECT) version=$(VERSION) description="Lua binding for regex libraries" notes=release-notes dist_type="zip" github_user=rrthomas
+ @echo "Don't forget to upload release to github!"
rm -f release-notes