From 4a5a01dc973b2448bf8925011937428a3022cf10 Mon Sep 17 00:00:00 2001 From: Codex Date: Mon, 10 Aug 2026 08:34:02 +0200 Subject: [PATCH] fix(ci): use Gitea artifact protocol --- .gitea/workflows/pixel10.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/pixel10.yml b/.gitea/workflows/pixel10.yml index fcb9750b..8c9deda0 100644 --- a/.gitea/workflows/pixel10.yml +++ b/.gitea/workflows/pixel10.yml @@ -222,10 +222,13 @@ jobs: set -e exit "$build_status" - - uses: actions/upload-artifact@v4 + # Gitea's artifact service implements the v3 protocol. The v4 action + # rejects non-GitHub servers with GHESNotSupportedError before upload. + - uses: actions/upload-artifact@v3 with: name: mrbweblibre-pixel10 path: apps/weblibre/build/app/outputs/flutter-apk/app-pixel10-release.apk + if-no-files-found: error - name: Remove release key if: always()