Skip to content

Commit 9d9341d

Browse files
Fix CI publish path
1 parent 8405aa7 commit 9d9341d

2 files changed

Lines changed: 3 additions & 5 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,11 @@ jobs:
1010
runs-on: ubuntu-24.04
1111
steps:
1212
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
13-
- name: Move to docs
14-
run: cd docs
1513
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4.1.0
1614
with:
1715
node-version: 21
1816
- name: Install dependencies
19-
run: cd docs && yarn install --frozen-lockfile
17+
run: yarn install --frozen-lockfile
2018
- name: Build documentation website
2119
# Check URLs are valid, path to images, etc.
2220
run: cd docs && yarn build

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ jobs:
1616
with:
1717
node-version: 21
1818
- name: Install dependencies
19-
run: cd docs && yarn install --frozen-lockfile
19+
run: yarn install --frozen-lockfile
2020
- name: Build website
21-
run: cd docs && yarn build
21+
run: yarn build
2222
# Popular action to deploy to GitHub Pages:
2323
# Docs: https://github.com/peaceiris/actions-gh-pages#%EF%B8%8F-docusaurus
2424
- name: Deploy to GitHub Pages

0 commit comments

Comments
 (0)