fix(demo-build): fix demo dosc deployments (#6035)

* fix(demo-build): fix demo dosc deployments

* fix(demo-build): fix demo dosc deployments
This commit is contained in:
Denis Strigo 2024-09-24 16:29:23 +02:00 committed by GitHub
parent 5f52562ea2
commit f4729fa22f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 5 additions and 3 deletions

View file

@ -117,7 +117,7 @@ async function buildDocsApp(projectDir: string, baseHref: string) {
async function deploy(distDir: string) {
await runCommand(
`npx angular-cli-ghpages -S --dir . --repo=https://github.com/${REPO_OWNER}/${REPO_NAME}.git`,
`npx angular-cli-ghpages -S --dir . --repo=https://GH_TOKEN@github.com/${REPO_OWNER}/${REPO_NAME}.git`,
{ cwd: distDir, showLog: true },
);
}