Skip to content

Commit 8bd3b72

Browse files
authored
Merge pull request #5263 from Shopify/no-more-committed-docs-part-1
Add workflow to build a deploy artifact and deploy to GH pages
2 parents 33f6fb8 + 21e4ea4 commit 8bd3b72

File tree

1 file changed

+54
-0
lines changed

1 file changed

+54
-0
lines changed

.github/workflows/docs.yml

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
name: Deploy CLI Kit docs to Pages
2+
3+
on:
4+
push:
5+
branches: ["main"]
6+
workflow_dispatch:
7+
8+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
9+
permissions:
10+
contents: read
11+
pages: write
12+
id-token: write
13+
14+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
15+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
16+
concurrency:
17+
group: "pages"
18+
cancel-in-progress: false
19+
20+
# Necessary for setup-cli-deps action to work
21+
env:
22+
DEBUG: '1'
23+
SHOPIFY_CLI_ENV: development
24+
SHOPIFY_CONFIG: debug
25+
PNPM_VERSION: '8.15.7'
26+
27+
jobs:
28+
build:
29+
runs-on: ubuntu-latest
30+
steps:
31+
- name: Checkout
32+
uses: actions/checkout@v4
33+
- name: Setup deps
34+
uses: ./.github/actions/setup-cli-deps
35+
with:
36+
node-version: "22"
37+
- name: Build
38+
run: pnpm nx run-many --all --skip-nx-cache --target=docs:generate --output-style=stream
39+
- name: Upload artifact
40+
uses: actions/upload-pages-artifact@v3
41+
with:
42+
path: ./docs
43+
44+
# Deployment job
45+
deploy:
46+
environment:
47+
name: github-pages
48+
url: ${{ steps.deployment.outputs.page_url }}
49+
runs-on: ubuntu-latest
50+
needs: build
51+
steps:
52+
- name: Deploy to GitHub Pages
53+
id: deployment
54+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)