1
0
mirror of https://github.com/twitter/twemoji.git synced 2024-10-02 21:02:03 +00:00
twemoji/scripts/deploy.sh
2019-06-27 16:45:07 -07:00

27 lines
692 B
Bash
Executable File

#!/bin/bash
ROOT=$(
cd $(dirname $0)/..
/bin/pwd
)
OUT="$ROOT/dist/"
PUBLISH_BRANCH=$1
# For this to work, the version specification must be on the second line of package.json
VERSION=$(cat "$ROOT/package.json" | sed '2!d' | egrep -o '[0-9]+\.[0-9]+\.[0-9]+')
git fetch --all
git add -f $OUT
git checkout $PUBLISH_BRANCH
git pull origin $PUBLISH_BRANCH
cd "v/"
# If the folder already exists we want to repalce it
if [ -d $VERSION ]; then
rm -r $VERSION
fi
# Create new version folder out of dist/
git mv -f $OUT $VERSION
git commit -q -m "Update the Twemoji project and push to $PUBLISH_BRANCH"
git push origin $PUBLISH_BRANCH
# Return to your working branch
git checkout -
cd $ROOT