Skip to content

Commit 8ade0fc

Browse files
gouravjshahclaude
andcommitted
fix: Update workflow paths for root-level docs site
- Remove docs-site/ prefix from paths since files are at repo root - Fix cache-dependency-path to package-lock.json - Fix build artifact path to build/ 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 8bb34df commit 8ade0fc

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

.github/workflows/deploy-docs.yml

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,9 @@ on:
55
branches:
66
- main
77
- dev
8-
paths:
9-
- 'docs-site/**'
10-
- '.github/workflows/deploy-docs.yml'
118
pull_request:
129
branches:
1310
- main
14-
paths:
15-
- 'docs-site/**'
1611
workflow_dispatch:
1712

1813
permissions:
@@ -27,9 +22,6 @@ concurrency:
2722
jobs:
2823
build:
2924
runs-on: ubuntu-latest
30-
defaults:
31-
run:
32-
working-directory: docs-site
3325
steps:
3426
- name: Checkout
3527
uses: actions/checkout@v4
@@ -39,7 +31,7 @@ jobs:
3931
with:
4032
node-version: '20'
4133
cache: 'npm'
42-
cache-dependency-path: docs-site/package-lock.json
34+
cache-dependency-path: package-lock.json
4335

4436
- name: Install dependencies
4537
run: npm ci
@@ -52,7 +44,7 @@ jobs:
5244
- name: Upload artifact
5345
uses: actions/upload-pages-artifact@v3
5446
with:
55-
path: docs-site/build
47+
path: build
5648

5749
deploy:
5850
environment:

0 commit comments

Comments
 (0)