From 5519f19b34691de1dea90efcd0226c80c3ee3857 Mon Sep 17 00:00:00 2001 From: Marcus Rehbock Date: Fri, 7 Aug 2026 01:08:28 -0700 Subject: [PATCH] =?UTF-8?q?CI:=20use=20public=20Gitea=20URL=20=E2=80=94=20?= =?UTF-8?q?job=20containers=20are=20not=20on=20the=20gitea=20network?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Fable 5 --- .gitea/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index bf60276..dd19bbf 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -15,7 +15,7 @@ jobs: run: | apt-get update -qq && apt-get install -y -qq git unzip curl >/dev/null git init -q . - git fetch -q --depth 1 "${{ github.server_url }}/${{ github.repository }}.git" "${{ github.sha }}" + git fetch -q --depth 1 "https://git.rehbock.xyz/${{ github.repository }}.git" "${{ github.sha }}" git checkout -q FETCH_HEAD - name: Install Android SDK @@ -49,7 +49,7 @@ jobs: env: TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - API="${{ github.server_url }}/api/v1/repos/${{ github.repository }}" + API="https://git.rehbock.xyz/api/v1/repos/${{ github.repository }}" TAG="v1.${{ github.run_number }}" APK=app/build/outputs/apk/release/app-release.apk test -f "$APK"