We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9969239 commit 804b290Copy full SHA for 804b290
.circleci/config.yml
@@ -215,6 +215,11 @@ jobs:
215
name: Check whether this job should be skipped.
216
command: '[[ -n ${CIRCLE_PR_NUMBER} ]] && circleci step halt || true'
217
218
+ # CircleCI has a config setting to enforce SSH for all github connections.
219
+ # This is not compatible with our mechanism of using a Personal Access Token
220
+ # to publish the build snapshots. In order to fix this, we unset the global option.
221
+ - run: git config --global --unset "url.ssh://[email protected]"
222
+
223
- *checkout_code
224
- *restore_cache
225
- *yarn_install
0 commit comments