Skip to content

Commit

Permalink
🔧 Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nwrenger committed Mar 22, 2024
1 parent 97f6aaa commit 56f4b80
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ name: Deploy to GitHub Pages

on:
push:
branches: 'main'
branches: ['main']

jobs:
build_site:
build-site:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Bun
uses: oven-sh/setup-bun@v1
Expand All @@ -27,7 +27,7 @@ jobs:
touch build/.nojekyll
- name: Upload Artifacts
uses: actions/upload-pages-artifact@v1
uses: actions/upload-pages-artifact@v4
with:
# this should match the `pages` option in your adapter-static options
path: 'build/'
Expand All @@ -47,4 +47,4 @@ jobs:
steps:
- name: Deploy
id: deployment
uses: actions/deploy-pages@v1
uses: actions/deploy-pages@v4

0 comments on commit 56f4b80

Please sign in to comment.