CI: use public Gitea URL — job containers are not on the gitea network
All checks were successful
Build & Release APK / build (push) Successful in 6m58s

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
2026-08-07 01:08:28 -07:00
parent 672d24966c
commit 5519f19b34

View File

@@ -15,7 +15,7 @@ jobs:
run: | run: |
apt-get update -qq && apt-get install -y -qq git unzip curl >/dev/null apt-get update -qq && apt-get install -y -qq git unzip curl >/dev/null
git init -q . 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 git checkout -q FETCH_HEAD
- name: Install Android SDK - name: Install Android SDK
@@ -49,7 +49,7 @@ jobs:
env: env:
TOKEN: ${{ secrets.GITHUB_TOKEN }} TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: | 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 }}" TAG="v1.${{ github.run_number }}"
APK=app/build/outputs/apk/release/app-release.apk APK=app/build/outputs/apk/release/app-release.apk
test -f "$APK" test -f "$APK"