We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bdcbb19 commit 9d385b7Copy full SHA for 9d385b7
1 file changed
.github/workflows/github-static.yml
@@ -31,12 +31,12 @@ jobs:
31
steps:
32
- name: Checkout
33
uses: actions/checkout@v6
34
-
+
35
- name: Setup Node.js
36
- uses: actions/setup-node@v3
+ uses: actions/setup-node@v4
37
with:
38
- cache: 'npm'
39
- node-version: '18'
+ cache: "npm"
+ node-version: "20"
40
41
- name: Install dependencies
42
run: npm ci
@@ -47,14 +47,10 @@ jobs:
47
- name: Setup Pages
48
uses: actions/configure-pages@v5
49
50
- # clean up any extraneous files that shouldn't be published
51
- - name: Remove unwanted files
52
- run: rm -rf example
53
54
- name: Upload artifact
55
uses: actions/upload-pages-artifact@v4
56
57
- path: 'build'
+ path: "build"
58
- name: Deploy to GitHub Pages
59
id: deployment
60
uses: actions/deploy-pages@v4
0 commit comments