Skip to content

Commit ab7fb87

Browse files
hanslfilipesilva
authored andcommitted
build: fix deploy script condition (take 5)
1 parent 780918e commit ab7fb87

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

scripts/git-builds.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ Promise.resolve()
9898
// Update the credentials using the GITHUB TOKEN.
9999
.then(() => execute('git', './ngtools-webpack-builds', 'config', 'credential.helper',
100100
'store', '--file=.git/credentials'))
101-
.then(() => fs.appendFileSync('./ngtools-webpack-builds/.git/credentials',
102-
`https://${process.env['GITHUB_TOKEN_ANGULAR']}@github.com`))
101+
.then(() => fs.writeFileSync('./ngtools-webpack-builds/.git/credentials',
102+
`https://${process.env['GITHUB_ACCESS_TOKEN']}@github.com`))
103103
.then(() => execute('git', './ngtools-webpack-builds', 'push'))
104104
//---------------------------- cli-builds ----------------------------------//
105105
.then(() => printMessage('Copying cli-builds dist....'))
@@ -115,8 +115,8 @@ Promise.resolve()
115115
// Update the credentials using the GITHUB TOKEN.
116116
.then(() => execute('git', './cli-builds', 'config', 'credential.helper',
117117
'store', '--file=.git/credentials'))
118-
.then(() => fs.appendFileSync('./cli-builds/.git/credentials',
119-
`https://${process.env['GITHUB_TOKEN_ANGULAR']}@github.com`))
118+
.then(() => fs.writeFileSync('./cli-builds/.git/credentials',
119+
`https://${process.env['GITHUB_ACCESS_TOKEN']}@github.com`))
120120
.then(() => execute('git', './cli-builds', 'push'))
121121
//---------------------------- done ----------------------------------------//
122122
.then(() => console.log('Done...'))

0 commit comments

Comments
 (0)