We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bdbe0ca commit 118196aCopy full SHA for 118196a
scripts/deploy.sh
@@ -8,6 +8,14 @@ npm run build-all
8
# adding package-lock.json to every package after npm install
9
rm -rf **/package-lock.json
10
11
+# Git user info configs
12
+git config --global user.email "[email protected]"
13
+git config --global user.name "carbon-bot"
14
+
15
+# Add github token to git credentials
16
+git config credential.helper "store --file=.git/credentials"
17
+echo "https://${GH_TOKEN}:@github.com" > .git/credentials 2>/dev/null
18
19
# checkout master to get out of detached HEAD state
20
git checkout master
21
0 commit comments