Skip to content

Commit 41f81d1

Browse files
committed
fix: update deployment workflow to build and upload documentation instead of demo
1 parent 424befe commit 41f81d1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,16 +40,16 @@ jobs:
4040
run: npm ci --legacy-peer-deps
4141

4242
- name: Build the application
43-
run: npx nx build demo --configuration production --base-href /ngx-overlay/
43+
run: npx nx build docs --configuration production --base-href /ngx-overlay/
4444

4545
- name: Create 404.html
46-
run: cp dist/apps/demo/browser/index.html dist/apps/demo/browser/404.html
46+
run: cp dist/apps/docs/browser/index.html dist/apps/docs/browser/404.html
4747

4848
- name: Upload artifact
4949
uses: actions/upload-pages-artifact@v3
5050
with:
5151
# Upload entire repository
52-
path: 'dist/apps/demo/browser'
52+
path: 'dist/apps/docs/browser'
5353
- name: Deploy to GitHub Pages
5454
id: deployment
5555
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)