From 77af1db2a74f212f6aa5887de22841f8aa679034 Mon Sep 17 00:00:00 2001 From: Nicholas Amancio <112116021+Nickthecan@users.noreply.github.com> Date: Thu, 13 Mar 2025 12:11:21 -0700 Subject: [PATCH] I think this could work --- .github/workflows/build_deploy.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_deploy.yml b/.github/workflows/build_deploy.yml index 740837b..110a1e3 100644 --- a/.github/workflows/build_deploy.yml +++ b/.github/workflows/build_deploy.yml @@ -1,5 +1,6 @@ # Author: GitHub + Amar Gandhi ('24) -# Updated by Nicholas Amancio 3/13/2025 +# Updated by Nicholas Amancio (3/12/25) + name: Build and deploy site to Pages on: @@ -53,8 +54,8 @@ jobs: working-directory: ${{ env.BUILD_PATH }} - name: Move build files run: mv ${{ env.BUILD_PATH }}/build/* ${{ env.BUILD_PATH }}/public - - name: Upload artifact - uses: actions/upload-artifact@v4 + - name: Upload static files as artifact + uses: actions/upload-pages-artifact@v3 with: path: ${{ env.BUILD_PATH }}/public/ @@ -69,4 +70,3 @@ jobs: - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v4 -