File tree 3 files changed +30
-1
lines changed
packages/editor-skeleton/src/layouts
3 files changed +30
-1
lines changed Original file line number Diff line number Diff line change 5
5
branches :
6
6
- develop
7
7
paths :
8
- - ' docs/**'
8
+ - ' docs/docs/ **'
9
9
10
10
jobs :
11
11
publish-docs :
Original file line number Diff line number Diff line change
1
+ name : Update and Publish Docs
2
+
3
+ on :
4
+ push :
5
+ # branches:
6
+ # - 'release/[0-9]+.[0-9]+.[0-9]+-beta'
7
+ paths :
8
+ - ' packages/**'
9
+
10
+ jobs :
11
+ publish-engine :
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+ - uses : actions/checkout@v2
15
+ - name : Setup Node.js
16
+ uses : actions/setup-node@v2
17
+ with :
18
+ node-version : ' 14'
19
+ registry-url : ' https://registry.npmjs.org'
20
+ - run : cd docs && npm install
21
+ - run : |
22
+ npm run build
23
+ - run : npm run pub:prerelease
24
+ env :
25
+ NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
26
+ - name : Get version
27
+ id : get_version
28
+ run : echo "::set-output name=version::$(node -p "require('./docs/package.json').version")"
Original file line number Diff line number Diff line change @@ -105,6 +105,7 @@ body {
105
105
right : 0 ;
106
106
bottom : 0 ;
107
107
z-index : -1 ;
108
+ overflow : hidden ;
108
109
109
110
& .active {
110
111
z-index : 999 ;
You can’t perform that action at this time.
0 commit comments