Skip to content

Commit

Permalink
chore(ci): fix deploy-demo.yml gh actions (add missing git user info)
Browse files Browse the repository at this point in the history
  • Loading branch information
tinesoft committed Jan 9, 2024
1 parent 13d636a commit 48dbb35
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/deploy-demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -25,4 +28,4 @@ jobs:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
npm ci
npx nx deploy demo
npx nx deploy demo --verbose
2 changes: 1 addition & 1 deletion apps/demo/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
Expand Down

0 comments on commit 48dbb35

Please sign in to comment.