File tree Expand file tree Collapse file tree 1 file changed +23
-1
lines changed Expand file tree Collapse file tree 1 file changed +23
-1
lines changed Original file line number Diff line number Diff line change 23
23
with :
24
24
node-version-file : ' .nvmrc'
25
25
26
- - name : Update
26
+ - name : Build
27
27
run : |
28
28
scripts/update-to-latest.sh
29
+
30
+ - name : Check out debugger-protocol-viewer
31
+ uses : actions/checkout@v2
32
+ with :
33
+ repository : ChromeDevTools/debugger-protocol-viewer
34
+ path : debugger-protocol-viewer
35
+ token : ${{ secrets.PERSONAL_ACCESS_TOKEN }}
36
+
37
+ - name : Build site
38
+ working-directory : debugger-protocol-viewer
39
+ run : |
40
+ npm install
41
+ npm run build
42
+
43
+ - name : Deploy to gh-pages
44
+ uses : JamesIves/github-pages-deploy-action@v4
45
+ with :
46
+ branch : gh-pages
47
+ folder : debugger-protocol-viewer/devtools-protocol
48
+ ssh-key : ${{ secrets.SSH_PRIVATE_KEY }}
49
+ clean : true
50
+ single-commit : false
You can’t perform that action at this time.
0 commit comments