This repository was archived by the owner on Sep 5, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +3
-7
lines changed Expand file tree Collapse file tree 3 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -155,6 +155,7 @@ jobs:
155
155
- *restore_cache
156
156
- *npm_install
157
157
-
run :
sudo npm i -g [email protected]
158
+ -
run :
git config --global --unset url.ssh://[email protected]
158
159
- run : ./scripts/circleci/update-snapshot-and-docs.sh --sha=${CIRCLE_SHA1}
159
160
160
161
# ----------------------------------------------------------------------------------------
Original file line number Diff line number Diff line change @@ -31,12 +31,10 @@ function run {
31
31
commitAuthorName=$( git --no-pager show -s --format=' %an' HEAD)
32
32
commitAuthorEmail=$( git --no-pager show -s --format=' %ae' HEAD)
33
33
34
- cd bower-material
34
+ cd bower-material/
35
35
36
36
git config user.name " ${commitAuthorName} "
37
37
git config user.email " ${commitAuthorEmail} "
38
- # Disable CircleCI's forced use of SSH with GitHub
39
- git config --global --unset url.ssh://
[email protected]
40
38
# GitHub personal access token with push permission specified as environment variable
41
39
git config credential.helper " store --file=.git/credentials"
42
40
echo " https://${ANGULARJS_MATERIAL_BOWER_TOKEN} :@github.com" > .git/credentials
Original file line number Diff line number Diff line change @@ -36,11 +36,8 @@ function run {
36
36
37
37
git config user.name " ${commitAuthorName} "
38
38
git config user.email " ${commitAuthorEmail} "
39
- git config credential.helper " store --file .git/credentials"
40
- # Disable CircleCI's forced use of SSH with GitHub
41
- echo " -- Removing CircleCI's forced use of SSH..."
42
- git config --global --unset url.ssh://
[email protected]
43
39
# GitHub personal access token with push permission specified as environment variable
40
+ git config credential.helper " store --file .git/credentials"
44
41
echo " -- Storing credentials..."
45
42
echo " https://${ANGULARJS_MATERIAL_DOCS_SITE_TOKEN} :@github.com" > .git/credentials
46
43
You can’t perform that action at this time.
0 commit comments