commit 6b9e44700d15399dbfe24c76e3747518f752bca8 parent 5bf0ee294ecd221409ac920f034d42d166d63cac Author: authorisation <64337177+authorisation@users.noreply.github.com> Date: Wed, 30 Aug 2023 19:44:55 +0200 fix(ci): submodules Diffstat:
M | .github/workflows/android.yml | | | 6 | +++++- |
M | .github/workflows/release.yml | | | 5 | ++++- |
2 files changed, 9 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml @@ -11,8 +11,12 @@ jobs: build: runs-on: ubuntu-latest steps: + - name: Checkout repo + uses: actions/checkout@v3 + with: + submodules: 'recursive' + - - uses: actions/checkout@v3 - name: Set up JDK 17 uses: actions/setup-java@v3 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml @@ -5,7 +5,10 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - name: Checkout repo + uses: actions/checkout@v3 + with: + submodules: 'recursive' - name: set up JDK 17 uses: actions/setup-java@v3