8e78c77fc1
This script replaces make-archive.sh and make-tag.sh. Switch to 'git archive' to create a ZIP file from the repo. Its way more faster, automates a lot things and works with the GitHub download HEAD/Release/Tag as ZIP functionality as well. git archive reads the file .gitattributes to determine which files has to be excluded from the zip file. It replaces the following placeholders in common.php: $Format:%d$": with the output of git log --pretty=format:%d which contains the tag of the last commit (if tagged). $Format:%H$": with the hash of the latest included commit. If no tag can be found the hash is appended to "master" and shown as version number. The approach is kind of hackish since no distinct format option for the tag exists. Fixes #231, https://github.com/fguillot/miniflux/issues/213#issuecomment-65631765
19 lines
391 B
Bash
Executable File
19 lines
391 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ $# -eq 0 ]; then
|
|
echo 1>&2 "$0: version number missing"
|
|
exit 2
|
|
fi
|
|
|
|
VERSION=$1
|
|
APP="miniflux"
|
|
|
|
# tag the release
|
|
git tag -a v$VERSION -m "Version $VERSION" && git push origin v$VERSION || exit 2
|
|
|
|
# create the archive
|
|
git archive v$VERSION -o ~/Devel/websites/$APP/$APP-$VERSION.zip
|
|
|
|
cd ~/Devel/websites/$APP/
|
|
unlink $APP-latest.zip
|
|
ln -s $APP-$VERSION.zip $APP-latest.zip |