Skip to content

Commit 7169e3f

Browse files
committed
fix: use correct access tokens for artifact publishing
1 parent ab77fa9 commit 7169e3f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
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"

0 commit comments

Comments
 (0)