File tree Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -25,30 +25,34 @@ jobs:
25
25
environment :
26
26
name : github-pages
27
27
url : ${{ steps.deployment.outputs.page_url }}
28
+
28
29
runs-on : ubuntu-latest
30
+
29
31
steps :
30
32
- name : Checkout
31
33
uses : actions/checkout@v3
32
34
33
35
- name : Set up Node.js
34
- uses : actions/setup-node@v3
36
+ uses : actions/setup-node@v4
35
37
with :
36
38
node-version : 21.x
37
39
cache : yarn
38
40
cache-dependency-path : ./package-lock.json
41
+
39
42
- name : Install dependencies
40
43
run : yarn install --frozen-lockfile --non-interactive
44
+
41
45
- name : Build
42
46
run : yarn run build
43
47
44
48
- name : Setup Pages
45
49
uses : actions/configure-pages@v5
50
+
46
51
- name : Upload artifact
47
- uses : actions/upload-artifact@v4
52
+ uses : actions/upload-pages- artifact@v3
48
53
with :
49
- name : github-pages
50
- path :
51
- build
54
+ path : build
55
+
52
56
- name : Deploy to GitHub Pages
53
57
id : deployment
54
- uses : actions/deploy-pages@v4
58
+ uses : actions/deploy-pages@v4
You can’t perform that action at this time.
0 commit comments