Skip to content

Commit e7a4a03

Browse files
jelbourntinayuangao
authored andcommitted
fix: use correct access tokens for artifact publishing (#3860)
1 parent 904c71e commit e7a4a03

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

scripts/release/publish-build-artifacts.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ git config user.name "$commitAuthorName"
4242
git config user.email "$commitAuthorEmail"
4343
git config credential.helper "store --file=.git/credentials"
4444

45-
echo "https://${MATERIAL2_DOCS_CONTENT_TOKEN}:@github.com" > .git/credentials
45+
echo "https://${MATERIAL2_BUILDS_TOKEN}:@github.com" > .git/credentials
4646

4747
git add -A
4848
git commit -m "$commitMessage"

scripts/release/publish-docs-content.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ git config user.name "$commitAuthorName"
7272
git config user.email "$commitAuthorEmail"
7373
git config credential.helper "store --file=.git/credentials"
7474

75-
echo "https://${MATERIAL2_BUILDS_TOKEN}:@github.com" > .git/credentials
75+
echo "https://${MATERIAL2_DOCS_CONTENT_TOKEN}:@github.com" > .git/credentials
7676

7777
git add -A
7878
git commit -m "$commitMessage"

test/protractor.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ if (process.env['TRAVIS']) {
4242
config.capabilities = {
4343
'browserName': 'chrome',
4444
'version': 'latest',
45-
"chromedriverVersion": "2.26",
45+
"chromedriverVersion": "2.28",
4646
'tunnel-identifier': process.env['TRAVIS_JOB_ID'],
4747
'build': process.env['TRAVIS_JOB_ID'],
4848
'name': 'Material E2E Tests',

0 commit comments

Comments
 (0)