Skip to content

Commit a53dab6

Browse files
committed
bump upload pages artifact actions
1 parent 5f3478b commit a53dab6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/build-test-deploy.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
- name: use node.js
1010
uses: actions/setup-node@v3
1111
with:
12-
node-version: '18.x'
12+
node-version: "18.x"
1313
- run: npm install
1414
- run: npm run build
1515
test:
@@ -21,9 +21,9 @@ jobs:
2121
- name: use node.js
2222
uses: actions/setup-node@v3
2323
with:
24-
node-version: '18.x'
24+
node-version: "18.x"
2525
- run: npm install
26-
- run: npm run test
26+
- run: npm test
2727
deploy:
2828
needs: test
2929
permissions:
@@ -42,15 +42,15 @@ jobs:
4242
- name: use node.js
4343
uses: actions/setup-node@v3
4444
with:
45-
node-version: '18.x'
45+
node-version: "18.x"
4646
- name: configure github pages
4747
uses: actions/configure-pages@v3
4848
with:
4949
static_site_generator: next
5050
- run: npm install
5151
- run: npm run build
5252
- name: upload artifacts
53-
uses: actions/upload-pages-artifact@v1
53+
uses: actions/upload-pages-artifact@v4
5454
with:
5555
path: "./out"
5656
- name: deploy

0 commit comments

Comments
 (0)