Skip to content

Commit 98d59c9

Browse files
committed
Generate HTML for MD doc files in GH pages
Based on inputs seen in https://github.com/Shopify/cli/actions/runs/12988959897/job/36221023057
1 parent 7237405 commit 98d59c9

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/docs.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,17 @@ jobs:
3434
uses: ./.github/actions/setup-cli-deps
3535
with:
3636
node-version: "22"
37-
- name: Build
37+
- name: Build TSDoc docs
3838
run: pnpm nx run-many --all --skip-nx-cache --target=docs:generate --output-style=stream
39+
- name: Build Markdown files into HTML
40+
uses: actions/jekyll-build-pages@v1
41+
with:
42+
source: ./docs
43+
destination: ./docs/_site
3944
- name: Upload artifact
4045
uses: actions/upload-pages-artifact@v3
4146
with:
42-
path: ./docs
47+
path: ./docs/_site
4348

4449
# Deployment job
4550
deploy:

0 commit comments

Comments
 (0)