diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index be11ae0..46f7c83 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -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 @@ -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/' @@ -47,4 +47,4 @@ jobs: steps: - name: Deploy id: deployment - uses: actions/deploy-pages@v1 + uses: actions/deploy-pages@v4