We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04b4e0a commit b7c4142Copy full SHA for b7c4142
.github/workflows/xrpl-go-docs-deploy.yml
@@ -11,20 +11,18 @@ jobs:
11
build:
12
name: Build Docusaurus
13
runs-on: ubuntu-latest
14
- working-directory: ./docs
15
steps:
16
- uses: actions/checkout@v4
17
with:
18
fetch-depth: 0
19
- uses: actions/setup-node@v4
20
21
node-version: 18
22
- cache: yarn
23
24
- name: Install dependencies
25
- run: yarn install --frozen-lockfile
+ run: cd docs && yarn install --frozen-lockfile
26
- name: Build website
27
- run: yarn build
+ run: cd docs && yarn build
28
29
- name: Upload Build Artifact
30
uses: actions/upload-pages-artifact@v3
0 commit comments