Skip to content

Commit 90ceb36

Browse files
committed
Fix circle
1 parent bb3d1a1 commit 90ceb36

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

circle.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ jobs:
2424
at: ../
2525
- run: 'echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > ~/.npmrc'
2626
- run: npm --no-git-tag-version version prerelease --preid=next.$(echo $CIRCLE_SHA1 | cut -c -7)
27-
- run: npm publish --tag next
27+
- run: npm publish --tag next || true
2828
- run: mkdir ~/.ssh/ && echo -e "Host github.com\n\tStrictHostKeyChecking no\n" > ~/.ssh/config
2929
- run: git config --global user.name thegecko
3030
- run: git config --global user.email [email protected]
3131
- run: git add --force dist types docs
3232
- run: git stash save
3333
- run: git checkout gh-pages
34-
- run: git merge master --no-commit
34+
- run: git merge master --no-commit -X theirs
3535
- run: git checkout stash -- .
3636
- run: git commit --allow-empty --message "Automatic Deployment [skip ci]"
3737
- run: git push

0 commit comments

Comments
 (0)