Skip to content

Commit 56f4b80

Browse files
committed
🔧 Fix
1 parent 97f6aaa commit 56f4b80

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/deploy.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ name: Deploy to GitHub Pages
22

33
on:
44
push:
5-
branches: 'main'
5+
branches: ['main']
66

77
jobs:
8-
build_site:
8+
build-site:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout
12-
uses: actions/checkout@v3
12+
uses: actions/checkout@v4
1313

1414
- name: Install Bun
1515
uses: oven-sh/setup-bun@v1
@@ -27,7 +27,7 @@ jobs:
2727
touch build/.nojekyll
2828
2929
- name: Upload Artifacts
30-
uses: actions/upload-pages-artifact@v1
30+
uses: actions/upload-pages-artifact@v4
3131
with:
3232
# this should match the `pages` option in your adapter-static options
3333
path: 'build/'
@@ -47,4 +47,4 @@ jobs:
4747
steps:
4848
- name: Deploy
4949
id: deployment
50-
uses: actions/deploy-pages@v1
50+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)