Compare commits

..

2 Commits

Author SHA1 Message Date
Bruno Wolff III
cb29cc9c18 Add a make publish function 2013-06-29 13:53:08 -05:00
Bruno Wolff III
3d2542b16d Fix pushing tags instruction 2013-06-29 13:49:01 -05:00
2 changed files with 5 additions and 2 deletions

View File

@@ -13,5 +13,8 @@ clean:
dist:
git archive --format=tar --prefix=spin-kickstarts-$(version)/ HEAD | gzip > spin-kickstarts.tar-$(version).gz
publish:
scp spin-kickstarts-$(version).tar.gz fedorahosted.org:spin-kickstarts
dist-clean:
git clean -f -d

4
README
View File

@@ -15,9 +15,9 @@ cd spin-kickstarts
git checkout BRANCHNAME
# No tag has been added yet tag HEAD with
git tag VERSION
git push tag VERSION
git push --tags
make
# Publish the released tar ball
scp spin-kickstarts-*.tar.gz fedorahosted.org:spin-kickstarts
make publish
# Clean up the generated files:
make clean