From 16b45d13d471e59787854551a0d0c3367b438bab Mon Sep 17 00:00:00 2001 From: leibale Date: Mon, 13 Dec 2021 14:33:11 -0500 Subject: [PATCH] fix documentation workflow --- .github/workflows/documentation.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 50652a250b..7b3d42bf9f 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -22,4 +22,9 @@ jobs: - name: Generate Documentation run: npm run documentation - name: Upload - run: npm run gh-pages + run: | + git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git + npm run gh-pages + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} +