We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97f6aaa commit 56f4b80Copy full SHA for 56f4b80
.github/workflows/deploy.yml
@@ -2,14 +2,14 @@ name: Deploy to GitHub Pages
2
3
on:
4
push:
5
- branches: 'main'
+ branches: ['main']
6
7
jobs:
8
- build_site:
+ build-site:
9
runs-on: ubuntu-latest
10
steps:
11
- name: Checkout
12
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
13
14
- name: Install Bun
15
uses: oven-sh/setup-bun@v1
@@ -27,7 +27,7 @@ jobs:
27
touch build/.nojekyll
28
29
- name: Upload Artifacts
30
- uses: actions/upload-pages-artifact@v1
+ uses: actions/upload-pages-artifact@v4
31
with:
32
# this should match the `pages` option in your adapter-static options
33
path: 'build/'
@@ -47,4 +47,4 @@ jobs:
47
48
- name: Deploy
49
id: deployment
50
- uses: actions/deploy-pages@v1
+ uses: actions/deploy-pages@v4
0 commit comments