From 8ad92da4227c187e151526ee22cb0d71e1f2d19a Mon Sep 17 00:00:00 2001 From: Ryan Baxter Date: Wed, 26 Jun 2024 14:04:47 -0400 Subject: [PATCH] Update static.yaml --- .github/workflows/static.yaml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/static.yaml b/.github/workflows/static.yaml index e8a34d1f..b9c9160f 100644 --- a/.github/workflows/static.yaml +++ b/.github/workflows/static.yaml @@ -31,8 +31,13 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 - - name: Deploy 🚀 - uses: JamesIves/github-pages-deploy-action@v4 + - name: Setup Pages + uses: actions/configure-pages@v5 + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 with: - folder: . - force: true + # Upload entire repository + path: '.' + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4