From e34e09f09a7f89de8f52c27484f0cc6f2a207059 Mon Sep 17 00:00:00 2001 From: "d.strigo" Date: Tue, 24 Sep 2024 16:27:48 +0200 Subject: [PATCH] fix(demo-build): fix demo dosc deployments --- scripts/docs/build-docs.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/docs/build-docs.ts b/scripts/docs/build-docs.ts index 3562e1b4..c4285629 100644 --- a/scripts/docs/build-docs.ts +++ b/scripts/docs/build-docs.ts @@ -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 }, ); }