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:
2828 url : ${{ steps.deployment.outputs.page_url }}
2929 runs-on : ubuntu-latest
3030 steps :
31- - uses : awalsh128/cache-apt-pkgs-action@v1.3.0
31+ - uses : awalsh128/cache-apt-pkgs-action@latest
3232 with :
3333 packages : doxygen graphviz
34+
3435 - name : Checkout
3536 uses : actions/checkout@v3
37+
3638 # 👇 Build steps
3739 - name : Set up Node.js
3840 uses : actions/setup-node@v3
3941 with :
4042 node-version : 16.x
4143 cache : yarn
44+
4245 - name : Install dependencies
4346 run : yarn install --frozen-lockfile --non-interactive
47+
4448 - name : Build
4549 run : yarn build
50+
4651 - name : Clone Nui
4752 uses : actions/checkout@master
4853 with :
4954 repository : NuiCpp/Nui
5055 ref : main
5156 path : nui
57+
5258 - name : Build Nui Documents
5359 working-directory : nui
5460 run : |
5561 mkdir -p build/docs
5662 doxygen doxyfile
63+
5764 - name : Copy Nui Documents
5865 run : cp -r nui/build/docs/html build/docs/doxygen
66+
5967 # 👆 Build steps
6068 - name : Setup Pages
61- uses : actions/configure-pages@v1
69+ uses : actions/configure-pages@v4
70+
6271 - name : Upload artifact
63- uses : actions/upload-pages-artifact@v1
72+ uses : actions/upload-pages-artifact@v3
6473 with :
6574 # 👇 Specify build output path
6675 path : build
76+
6777 - name : Deploy to GitHub Pages
6878 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