fix: downgrade artifact actions to v3 for Gitea compatibility
Build and Deploy to Synology NAS / test (push) Successful in 1h1m38s
Build and Deploy to Synology NAS / build (push) Successful in 2h34m26s
Build and Deploy to Synology NAS / deploy (push) Failing after 3m41s
Build and Deploy to Synology NAS / notify (push) Failing after 14m7s

- Changed upload-artifact from v4 to v3
- Changed download-artifact from v4 to v3
- Gitea Actions does not support artifact v4 API (GHES compatibility issue)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-12-18 08:13:10 +01:00
co-authored by Claude
parent 284e30da71
commit 23475f650f
+2 -2
View File
@@ -125,7 +125,7 @@ jobs:
- name: Upload Docker Image Artifact
if: ${{ steps.validate.outputs.valid == 'true' }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
name: docker-image
path: laravel-app.tar.gz
@@ -142,7 +142,7 @@ jobs:
uses: actions/checkout@v4
- name: Download Docker Image Artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v3
with:
name: docker-image