Update .gitea/workflows/build_and_deploy.yaml
All checks were successful
Build and Deploy Zola Site / build (push) Successful in 19s
Build and Deploy Zola Site / deploy (push) Successful in 7s

This commit is contained in:
2025-10-09 12:53:15 +00:00
parent 76a1b9aea1
commit e35d6e1772

View File

@@ -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