UNPKG

508 Bapplication/x-shView Raw
1#!/bin/sh
2
3set -e
4
5git config --global user.email $GH_EMAIL
6git config --global user.name $GH_USER
7
8git remote add origin-master https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git > /dev/null 2>&1
9
10git fetch origin-master
11git checkout -b master-local origin-master/master
12
13yarn upgrade --latest
14git add .
15git commit --allow-empty -m "updated dependencies [skip ci]"
16
17yarn test
18yarn deploy:patch
19
20git push --quiet origin-master master-local:master
21git push --quiet origin-master master-local:master --tags
\No newline at end of file