From 331003d1c93d4301d619b1dda8edd2b3898af74c Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 20 Mar 2026 21:58:29 -0700 Subject: [PATCH] Fix CI: downgrade artifact actions to v3 for Gitea compatibility upload-artifact@v4 and download-artifact@v4 require GitHub's backend and are not supported on Gitea. v3 works with Gitea Actions. Co-Authored-By: Claude Opus 4.6 (1M context) --- .gitea/workflows/build.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 1e79e18..0b9d773 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -49,7 +49,7 @@ jobs: run: python build_sidecar.py --cpu-only - name: Upload sidecar artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: sidecar-${{ matrix.target }} path: python/dist/voice-to-notes-sidecar/ @@ -103,7 +103,7 @@ jobs: Write-Host "Windows build environment ready" - name: Download sidecar artifact - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v3 with: name: sidecar-${{ matrix.target }} path: src-tauri/binaries/ @@ -123,7 +123,7 @@ jobs: - name: Upload app artifacts (Linux) if: matrix.platform == 'linux' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: app-${{ matrix.target }} path: | @@ -133,7 +133,7 @@ jobs: - name: Upload app artifacts (Windows) if: matrix.platform == 'windows' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: app-${{ matrix.target }} path: | @@ -143,7 +143,7 @@ jobs: - name: Upload app artifacts (macOS) if: matrix.platform == 'macos' - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: app-${{ matrix.target }} path: | @@ -165,10 +165,9 @@ jobs: sudo apt-get install -y jq curl - name: Download all app artifacts - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v3 with: path: artifacts/ - pattern: app-* - name: Generate release tag id: tag