From 450bcc763a5cc44599482e9341d44738cce68935 Mon Sep 17 00:00:00 2001 From: Antigravity Date: Tue, 19 May 2026 20:24:19 +0000 Subject: [PATCH] fix(ci): downgrade upload/download-artifact to v3 for compatibility and add check --- .gitea/workflows/ci.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index b64203f..92e69aa 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -77,11 +77,11 @@ jobs: .next/standalone .next/static public prisma \ node_modules/.prisma node_modules/@prisma node_modules/prisma \ docker-entrypoint.sh socket-server.ts tsconfig.json + ls -lh ../web-artifact.tgz - name: Upload web artifact if: github.ref == 'refs/heads/main' && github.event_name == 'push' - working-directory: ${{ github.workspace }} - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: web-artifact path: web-artifact.tgz @@ -100,7 +100,7 @@ jobs: git reset --hard origin/main - name: Download web artifact - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v3 with: name: web-artifact