We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e600e1c commit c9c207eCopy full SHA for c9c207e
.github/workflows/update.yml
@@ -23,6 +23,27 @@ jobs:
23
with:
24
node-version-file: '.nvmrc'
25
26
- - name: Update
+ - name: Build
27
run: |
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
46
+ branch: gh-pages
47
+ folder: debugger-protocol-viewer/devtools-protocol
48
+ ssh-key: ${{ secrets.SSH_PRIVATE_KEY }}
49
+ single-commit: true
0 commit comments