Skip to content
This repository was archived by the owner on Jul 11, 2026. It is now read-only.

Commit a2c49b7

Browse files
feat: add GitHub Actions workflow to automate documentation deployment to GitHub Pages
1 parent dae552f commit a2c49b7

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/deploy-docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ jobs:
3131
with:
3232
node-version: 22
3333
cache: 'npm'
34-
cache-dependency-path: docs/package.json # no lockfile to rely on
34+
cache-dependency-path: docs/package.json
3535

3636
- name: Install dependencies
37-
run: npm install # npm ci won't work without a synced lockfile
37+
run: npm install
3838
working-directory: docs
3939

4040
- name: Build website
@@ -47,7 +47,7 @@ jobs:
4747
github_token: ${{ secrets.GITHUB_TOKEN }}
4848
publish_dir: ./docs/build
4949
publish_branch: docs
50-
exclude_assets: ''
50+
exclude_assets: '' # <-- this is what was killing the HTML/JS/CSS
5151
user_name: 'github-actions[bot]'
5252
user_email: 'github-actions[bot]@users.noreply.github.com'
5353
commit_message: 'docs: deploy documentation [skip ci]'

0 commit comments

Comments
 (0)