From cb221cee3d177292e514c2882409969631722fe2 Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Fri, 1 Sep 2023 13:52:58 +0530 Subject: [PATCH] feat(android): include CI for android builds --- .github/workflows/android.yaml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/android.yaml diff --git a/.github/workflows/android.yaml b/.github/workflows/android.yaml new file mode 100644 index 0000000..d69dbff --- /dev/null +++ b/.github/workflows/android.yaml @@ -0,0 +1,26 @@ +name: Update Lune Sources + +on: + schedule: + - cron: '0 0 * * *' + workflow_dispatch: + +jobs: + update: + name: Update the lune-src submodule + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v3 + with: + submodules: true + fetch-depth: 0 + fetch-tags: true + + - name: Install rustup + run: "curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh" + + - name: Build routine + run: "chmod +x ../package/android/build.sh && ../package/android/build.sh" +