File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Update the NODE_VERSION arg in docker-compose.yml to pick a Node version: 18, 16, 14
2
- ARG NODE_VERSION=16
2
+ ARG NODE_VERSION=20
3
3
FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:0-${NODE_VERSION}
4
4
5
5
# VARIANT can be either 'hugo' for the standard version or 'hugo_extended' for the extended version.
Original file line number Diff line number Diff line change 23
23
run : hugo --minify
24
24
25
25
- name : Upload build artifacts
26
- uses : actions/upload-artifact@v3
26
+ uses : actions/upload-artifact@v4
27
27
with :
28
28
name : public
29
29
path : ./public
@@ -34,13 +34,13 @@ jobs:
34
34
if : github.ref == 'refs/heads/web'
35
35
steps :
36
36
- name : Download build artifacts
37
- uses : actions/download-artifact@v3
37
+ uses : actions/download-artifact@v4
38
38
with :
39
39
name : public
40
40
path : ./public
41
41
42
42
- name : Deploy
43
- uses : peaceiris/actions-gh-pages@v3
43
+ uses : peaceiris/actions-gh-pages@v4
44
44
with :
45
45
github_token : ${{ secrets.GITHUB_TOKEN }}
46
46
publish_dir : ./public
You can’t perform that action at this time.
0 commit comments