Skip to content

Commit 3f4d11b

Browse files
ci: disable docs-site job until docs-site/ is committed
The docs-site CI job referenced a directory that is not yet in the repo, which would cause every push (including release tags) to fail the job. Comment it out for now; re-enable once docs-site/ lands.
1 parent fe19090 commit 3f4d11b

1 file changed

Lines changed: 18 additions & 20 deletions

File tree

.github/workflows/cicd.yml

Lines changed: 18 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -44,26 +44,24 @@ jobs:
4444
run: npm run test:run
4545
working-directory: admin-ui
4646

47-
docs-site:
48-
if: github.event_name == 'push'
49-
runs-on: ubuntu-latest
50-
steps:
51-
- uses: actions/checkout@v5
52-
53-
- name: Set up Node
54-
uses: actions/setup-node@v5
55-
with:
56-
node-version: 22
57-
cache: npm
58-
cache-dependency-path: docs-site/package-lock.json
59-
60-
- name: Install docs-site dependencies
61-
run: npm ci
62-
working-directory: docs-site
63-
64-
- name: VitePress build
65-
run: npm run build
66-
working-directory: docs-site
47+
# docs-site job disabled until docs-site/ is committed to the repo.
48+
# docs-site:
49+
# if: github.event_name == 'push'
50+
# runs-on: ubuntu-latest
51+
# steps:
52+
# - uses: actions/checkout@v5
53+
# - name: Set up Node
54+
# uses: actions/setup-node@v5
55+
# with:
56+
# node-version: 22
57+
# cache: npm
58+
# cache-dependency-path: docs-site/package-lock.json
59+
# - name: Install docs-site dependencies
60+
# run: npm ci
61+
# working-directory: docs-site
62+
# - name: VitePress build
63+
# run: npm run build
64+
# working-directory: docs-site
6765

6866
publish:
6967
needs: test

0 commit comments

Comments
 (0)