File tree Expand file tree Collapse file tree 1 file changed +14
-4
lines changed Expand file tree Collapse file tree 1 file changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -28,42 +28,52 @@ jobs:
28
28
url : ${{ steps.deployment.outputs.page_url }}
29
29
runs-on : ubuntu-latest
30
30
steps :
31
- - uses : awalsh128/cache-apt-pkgs-action@v1.3.0
31
+ - uses : awalsh128/cache-apt-pkgs-action@latest
32
32
with :
33
33
packages : doxygen graphviz
34
+
34
35
- name : Checkout
35
36
uses : actions/checkout@v3
37
+
36
38
# 👇 Build steps
37
39
- name : Set up Node.js
38
40
uses : actions/setup-node@v3
39
41
with :
40
42
node-version : 16.x
41
43
cache : yarn
44
+
42
45
- name : Install dependencies
43
46
run : yarn install --frozen-lockfile --non-interactive
47
+
44
48
- name : Build
45
49
run : yarn build
50
+
46
51
- name : Clone Nui
47
52
uses : actions/checkout@master
48
53
with :
49
54
repository : NuiCpp/Nui
50
55
ref : main
51
56
path : nui
57
+
52
58
- name : Build Nui Documents
53
59
working-directory : nui
54
60
run : |
55
61
mkdir -p build/docs
56
62
doxygen doxyfile
63
+
57
64
- name : Copy Nui Documents
58
65
run : cp -r nui/build/docs/html build/docs/doxygen
66
+
59
67
# 👆 Build steps
60
68
- name : Setup Pages
61
- uses : actions/configure-pages@v1
69
+ uses : actions/configure-pages@v4
70
+
62
71
- name : Upload artifact
63
- uses : actions/upload-pages-artifact@v1
72
+ uses : actions/upload-pages-artifact@v3
64
73
with :
65
74
# 👇 Specify build output path
66
75
path : build
76
+
67
77
- name : Deploy to GitHub Pages
68
78
id : deployment
69
- uses : actions/deploy-pages@v1
79
+ uses : actions/deploy-pages@v4
You can’t perform that action at this time.
0 commit comments