File tree Expand file tree Collapse file tree 2 files changed +17
-8
lines changed Expand file tree Collapse file tree 2 files changed +17
-8
lines changed Original file line number Diff line number Diff line change 15
15
16
16
strategy :
17
17
matrix :
18
- node-version : [16 .x]
18
+ node-version : [20 .x]
19
19
20
20
steps :
21
21
- name : Checkout 🛎️
Original file line number Diff line number Diff line change 12
12
13
13
strategy :
14
14
matrix :
15
- node-version : [16 .x]
15
+ node-version : [20 .x]
16
16
17
17
steps :
18
18
- name : Checkout 🛎️
@@ -36,10 +36,19 @@ jobs:
36
36
npx next build && npx next export
37
37
touch out/.nojekyll
38
38
# CI: false # true -> fails on warning
39
- - name : Deploy 🚀
40
- uses : JamesIves/github-pages-deploy-action@v4
39
+ # - name: Deploy 🚀
40
+ # uses: JamesIves/github-pages-deploy-action@v4
41
+ # with:
42
+ # token: ${{ secrets.GITHUB_TOKEN }}
43
+ # branch: gh-pages # The branch the action should deploy to.
44
+ # folder: out # The folder the action should deploy.
45
+ # clean: true # Automatically remove deleted files from the deploy branch
46
+ - name : Setup Pages
47
+ uses : actions/configure-pages@v5
48
+ - name : Upload artifact
49
+ uses : actions/upload-pages-artifact@v3
41
50
with :
42
- token : ${{ secrets.GITHUB_TOKEN }}
43
- branch : gh-pages # The branch the action should deploy to.
44
- folder : out # The folder the action should deploy.
45
- clean : true # Automatically remove deleted files from the deploy branch
51
+ path : ' out '
52
+ - name : Deploy to GitHub Pages 🚀
53
+ id : deployment
54
+ uses : actions/ deploy-pages@v4
You can’t perform that action at this time.
0 commit comments