File tree Expand file tree Collapse file tree 1 file changed +0
-35
lines changed
Expand file tree Collapse file tree 1 file changed +0
-35
lines changed Original file line number Diff line number Diff line change 1111
1212 workflow_dispatch :
1313
14- jobs :
15- deploy :
16- runs-on : ubuntu-latest
17- steps :
18- - name : Checkout repository
19- uses : actions/checkout@v4
20-
21- - name : Setup Node.js
22- uses : actions/setup-node@v4
23- with :
24- node-version : ' 22'
25-
26- - name : Install dependencies
27- run : |
28- cd docs
29- npm install
30-
31- - name : Build documentation
32- run : |
33- cd docs
34- npm run docs:build
35-
36- name : Deploy Docs to GitHub Pages
37-
38- on :
39- push :
40- branches :
41- - main
42- - feat/docs
43- paths :
44- - ' docs/**'
45- - ' .github/workflows/deploy-docs.yaml'
46- workflow_dispatch :
47-
4814jobs :
4915 deploy :
5016 runs-on : ubuntu-latest
7541 - name : Deploy to GitHub Pages
7642 id : deploy
7743 uses : actions/deploy-pages@v4
78-
You can’t perform that action at this time.
0 commit comments