From 48dbb35b8bb058fa50f86a9368bde178510b2228 Mon Sep 17 00:00:00 2001 From: Tine Kondo Date: Tue, 9 Jan 2024 08:29:41 +0100 Subject: [PATCH] chore(ci): fix `deploy-demo.yml` gh actions (add missing git user info) --- .github/workflows/deploy-demo.yml | 5 ++++- apps/demo/project.json | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-demo.yml b/.github/workflows/deploy-demo.yml index 5b84b9c..3c2630f 100644 --- a/.github/workflows/deploy-demo.yml +++ b/.github/workflows/deploy-demo.yml @@ -15,6 +15,9 @@ jobs: steps: - name: Checkout Repo uses: actions/checkout@v3 + - run: | + git config --global user.name "${GITHUB_ACTOR}" + git config --global user.email "${GITHUB_ACTOR}@users.noreply.github.com" - name: Use Node.js 20.x uses: actions/setup-node@v3 with: @@ -25,4 +28,4 @@ jobs: NPM_TOKEN: ${{ secrets.NPM_TOKEN }} run: | npm ci - npx nx deploy demo + npx nx deploy demo --verbose diff --git a/apps/demo/project.json b/apps/demo/project.json index 003faa1..88d4bb0 100644 --- a/apps/demo/project.json +++ b/apps/demo/project.json @@ -106,7 +106,7 @@ "deploy": { "executor": "@nx-dotnet/nx-ghpages:deploy", "options": { - "remote": "https://github.com/tinesoft/ngx-cookieconsent.git", + "remote": "https://github.com/tinesoft/ngx-cookieconsent.github.io.git", "directory": "dist/apps/demo" } }