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 656ef22 commit 4126a83Copy full SHA for 4126a83
scripts/release/publish-build-artifacts.sh
@@ -3,6 +3,8 @@
3
# Script to publish the build artifacts to a GitHub repository.
4
# Builds will be automatically published once new changes are made to the repository.
5
6
+set -e -o pipefail
7
+
8
# Go to the project root directory
9
cd $(dirname $0)/../..
10
@@ -40,7 +42,7 @@ git config user.name "$commitAuthorName"
40
42
git config user.email "$commitAuthorEmail"
41
43
git config credential.helper "store --file=.git/credentials"
44
-echo "$MATERIAL2_BUILDS_TOKEN" > .git/credentials
45
+echo "https://${MATERIAL2_BUILDS_TOKEN}:@github.com" > .git/credentials
46
47
git add -A
48
git commit -m "$commitMessage"
0 commit comments