Skip to content

Commit 66487b4

Browse files
billy1624tyt2y3
andauthored
Build docs preview for PR (#94)
* try * TRY * Try * TRY AGAIN * TRY 1 * Fix * CI * TESTING * TEST * TEST * CI * CI * PR Preview (#2) * Edit * Edit * Edit * Fix * TESTING * TEST * TEST * CI * CI --------- Co-authored-by: Chris Tsang <[email protected]> * remove unused --------- Co-authored-by: Chris Tsang <[email protected]>
1 parent 71f54f0 commit 66487b4

File tree

5 files changed

+41
-20
lines changed

5 files changed

+41
-20
lines changed

.github/workflows/deploy.yml

+7-9
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,25 @@ on:
88
- master
99

1010
concurrency:
11-
group: ${{ github.workflow }}-${{ github.head_ref || github.ref || github.run_id }}
12-
cancel-in-progress: true
11+
group: seaql.github.io
12+
cancel-in-progress: false
1313

1414
jobs:
1515
deploy:
1616
name: Deploy
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v3
2020

2121
- uses: actions/setup-node@v3
2222
with:
2323
node-version: 16
2424

25-
- name: Build Docs
26-
run: sh build.sh
25+
- run: sh build.sh
2726

28-
- name: Deploy GitHub Pages
29-
uses: JamesIves/github-pages-deploy-action@v4
27+
- uses: JamesIves/github-pages-deploy-action@v4
3028
with:
3129
branch: gh-pages
32-
folder: .
33-
single-commit: true
30+
folder: docs
3431
clean: true
32+
clean-exclude: preview

.github/workflows/preview.yml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Preview
2+
3+
on:
4+
pull_request:
5+
6+
concurrency:
7+
group: seaql.github.io
8+
cancel-in-progress: false
9+
10+
jobs:
11+
deploy:
12+
name: Preview
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v3
16+
17+
- uses: actions/setup-node@v3
18+
with:
19+
node-version: 16
20+
21+
- run: sh preview.sh ${{ github.event.number }}
22+
23+
- run: sh build.sh
24+
25+
- uses: rossjrw/pr-preview-action@v1
26+
with:
27+
preview-branch: gh-pages
28+
source-dir: docs
29+
umbrella-dir: preview
30+
custom-url: www.sea-ql.org
31+
action: auto

Blog/docusaurus.config.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@ module.exports = {
2828
},
2929
items: [
3030
{
31-
to: '/blog',
31+
to: 'https://www.sea-ql.org/blog/',
32+
target: '_self',
3233
label: 'Blog',
3334
position: 'left'
3435
},

preview.sh

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
find . -depth -type f -name 'docusaurus.config.js' -exec sed -i "s/baseUrl: '/baseUrl: '\/preview\/pr-$1/" {} \;

publish.sh

-10
This file was deleted.

0 commit comments

Comments
 (0)