diff --git a/.gitea/workflows/web-daily.yml b/.gitea/workflows/web-daily.yml index 9ee8ba9..f5836d8 100644 --- a/.gitea/workflows/web-daily.yml +++ b/.gitea/workflows/web-daily.yml @@ -64,7 +64,9 @@ jobs: - name: Save refresh summary if: always() - uses: actions/upload-artifact@v4 + continue-on-error: true + # v4 artifact API unsupported on Gitea; v3 still uploads for notify digests. + uses: actions/upload-artifact@v3 with: name: web-daily-refresh-${{ github.run_id }} path: web/.refresh/summary.json diff --git a/.gitea/workflows/web-patch.yml b/.gitea/workflows/web-patch.yml index 3e6ae39..fc7d346 100644 --- a/.gitea/workflows/web-patch.yml +++ b/.gitea/workflows/web-patch.yml @@ -62,7 +62,9 @@ jobs: - name: Save refresh summary if: always() - uses: actions/upload-artifact@v4 + continue-on-error: true + # v4 artifact API unsupported on Gitea; v3 still uploads for notify digests. + uses: actions/upload-artifact@v3 with: name: web-patch-refresh-${{ github.run_id }} path: web/.refresh/summary.json diff --git a/.gitea/workflows/web-weekly.yml b/.gitea/workflows/web-weekly.yml index 0e4bd0d..96c7236 100644 --- a/.gitea/workflows/web-weekly.yml +++ b/.gitea/workflows/web-weekly.yml @@ -62,7 +62,9 @@ jobs: - name: Save refresh summary if: always() - uses: actions/upload-artifact@v4 + continue-on-error: true + # v4 artifact API unsupported on Gitea; v3 still uploads for notify digests. + uses: actions/upload-artifact@v3 with: name: web-weekly-refresh-${{ github.run_id }} path: web/.refresh/summary.json