mirror of
https://github.com/michaelrsweet/pdfio.git
synced 2024-11-08 06:28:27 +01:00
Prep for first beta release.
This commit is contained in:
parent
3594b9cfcb
commit
c53ad2a447
2
.gitattributes
vendored
Normal file
2
.gitattributes
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
.git* export-ignore
|
||||||
|
makesrcdist export-ignore
|
19
makesrcdist
Executable file
19
makesrcdist
Executable file
@ -0,0 +1,19 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
#
|
||||||
|
# makesrcdist - make a source distribution of pdfio.
|
||||||
|
#
|
||||||
|
|
||||||
|
if test $# != 1; then
|
||||||
|
echo "Usage: ./makesrcdist version"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
version=$1
|
||||||
|
|
||||||
|
echo Creating tag for release...
|
||||||
|
git tag -m "Tag $version" v$version
|
||||||
|
git push origin v$version
|
||||||
|
|
||||||
|
echo Creating pdfio-$version.tar.gz...
|
||||||
|
git archive --format tar --prefix=pdfio-$version/ HEAD | gzip -v9 >pdfio-$version.tar.gz
|
||||||
|
gpg --detach-sign pdfio-$version.tar.gz
|
Loading…
Reference in New Issue
Block a user