File tree 5 files changed +41
-20
lines changed
5 files changed +41
-20
lines changed Original file line number Diff line number Diff line change 8
8
- master
9
9
10
10
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
13
13
14
14
jobs :
15
15
deploy :
16
16
name : Deploy
17
17
runs-on : ubuntu-latest
18
18
steps :
19
- - uses : actions/checkout@v2
19
+ - uses : actions/checkout@v3
20
20
21
21
- uses : actions/setup-node@v3
22
22
with :
23
23
node-version : 16
24
24
25
- - name : Build Docs
26
- run : sh build.sh
25
+ - run : sh build.sh
27
26
28
- - name : Deploy GitHub Pages
29
- uses : JamesIves/github-pages-deploy-action@v4
27
+ - uses : JamesIves/github-pages-deploy-action@v4
30
28
with :
31
29
branch : gh-pages
32
- folder : .
33
- single-commit : true
30
+ folder : docs
34
31
clean : true
32
+ clean-exclude : preview
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change @@ -28,7 +28,8 @@ module.exports = {
28
28
} ,
29
29
items : [
30
30
{
31
- to : '/blog' ,
31
+ to : 'https://www.sea-ql.org/blog/' ,
32
+ target : '_self' ,
32
33
label : 'Blog' ,
33
34
position : 'left'
34
35
} ,
Original file line number Diff line number Diff line change
1
+ find . -depth -type f -name ' docusaurus.config.js' -exec sed -i " s/baseUrl: '/baseUrl: '\/preview\/pr-$1 /" {} \;
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments