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