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