Skip to content
This repository was archived by the owner on Apr 30, 2018. It is now read-only.

Commit 89bc1d6

Browse files
author
Kent C. Dodds
committed
fix(build-temp): trying origin...
1 parent 8d22337 commit 89bc1d6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/publish-latest.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ git config --global user.email [email protected]
88
git config --global user.name formly-bot
99

1010
echo "setting remote"
11-
git remote add github https://formly-bot:${BOT_GH_TOKEN}@github.com/formly-js/angular-formly.git
11+
git remote set-url origin https://formly-bot:${BOT_GH_TOKEN}@github.com/formly-js/angular-formly.git
1212

1313
echo "merging master"
14-
git merge github/master -m "master merge" -X theirs
14+
git merge origin/master -m "master merge" -X theirs
1515

1616
echo "adding dist"
1717
git add dist package.json
@@ -23,7 +23,7 @@ echo "tagging with v$F_VERSION"
2323
git tag v${F_VERSION} -f
2424

2525
echo "pushing"
26-
git push github latest --tags -f
26+
git push origin latest --tags -f
2727

2828
echo "done!"
2929

0 commit comments

Comments
 (0)