From 7064e9146d60d0751bc43d00ca74d20aa8968750 Mon Sep 17 00:00:00 2001 From: Nissan Ahmed Date: Tue, 19 Mar 2024 17:32:44 +0600 Subject: [PATCH] Support git repo with submodules --- .github/workflows/build-apk.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-apk.yaml b/.github/workflows/build-apk.yaml index 0f53a22..ea7b65e 100644 --- a/.github/workflows/build-apk.yaml +++ b/.github/workflows/build-apk.yaml @@ -28,7 +28,7 @@ jobs: java-version: ${{ github.event.inputs.jdkVersion }} - name: Clone project - run: git clone --depth=1 ${{ github.event.inputs.repository }} workspace + run: git clone --recurse-submodules --depth=1 ${{ github.event.inputs.repository }} workspace - name: Build APK working-directory: ./workspace