From 93ae39a7dfcf4f91ca829793e1fa34c72cecb467 Mon Sep 17 00:00:00 2001 From: Daniel Date: Sun, 17 May 2026 17:55:46 +0200 Subject: [PATCH] Use shell checkout in Android CI --- .forgejo/workflows/android.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/android.yml b/.forgejo/workflows/android.yml index 828e9b7..e172624 100644 --- a/.forgejo/workflows/android.yml +++ b/.forgejo/workflows/android.yml @@ -14,12 +14,14 @@ jobs: GRADLE_VERSION: 8.10.2 steps: - name: Check out repository - uses: actions/checkout@v4 + run: | + git clone "http://forgejo:3000/${GITHUB_REPOSITORY}.git" . + git checkout "$GITHUB_SHA" - name: Install Gradle dependencies run: | apt-get update - apt-get install -y --no-install-recommends ca-certificates curl unzip + apt-get install -y --no-install-recommends ca-certificates curl nodejs unzip - name: Install Gradle run: |