1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-11-28 02:54:31 +03:00
vimr/bin/commit_and_push_appcast.sh
2017-11-29 23:23:52 +01:00

26 lines
571 B
Bash
Executable File

#!/bin/bash
set -e
BRANCH=$1
COMPOUND_VERSION=$2
IS_SNAPSHOT=$3
UPDATE_SNAPSHOT_APPCAST_FOR_RELEASE=$4
if [ "${IS_SNAPSHOT}" = true ] ; then
cp ./build/Build/Products/Release/appcast_snapshot.xml .
else
cp ./build/Build/Products/Release/appcast.xml .
fi
if [ "${IS_SNAPSHOT}" = false ] && [ "${UPDATE_SNAPSHOT_APPCAST_FOR_RELEASE}" = true ] ; then
cp appcast.xml appcast_snapshot.xml
fi
echo "### Commiting and pushing appcast(s) to ${BRANCH}"
git add appcast*
git commit -S -m "Bump appcast(s) to ${COMPOUND_VERSION}"
git push origin HEAD:"${BRANCH}"