From e35d6e177242fafa368912bf757d5467e7030927 Mon Sep 17 00:00:00 2001 From: finmoon Date: Thu, 9 Oct 2025 12:53:15 +0000 Subject: [PATCH] Update .gitea/workflows/build_and_deploy.yaml --- .gitea/workflows/build_and_deploy.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build_and_deploy.yaml b/.gitea/workflows/build_and_deploy.yaml index 9fb16df..8e7cec0 100644 --- a/.gitea/workflows/build_and_deploy.yaml +++ b/.gitea/workflows/build_and_deploy.yaml @@ -43,7 +43,7 @@ jobs: # Step 5: Upload the 'public' directory as an artifact # This makes the build output available to other jobs (like our deploy job) - name: Upload artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: zola-public path: main-site/public/ @@ -57,7 +57,7 @@ jobs: steps: # Step 1: Download the artifact from the 'build' job - name: Download artifact - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v3 # Use v3 instead of v4 with: name: zola-public