From 9f033e76478d5e331e02ebad978f32c751549eeb Mon Sep 17 00:00:00 2001 From: Norbel AMBANUMBEN Date: Mon, 7 Aug 2023 12:08:15 +0100 Subject: [PATCH] Chore: Add `workflow` to build test apk (#596) ## Proposed Changes - Add a `workflow` to build APK to facilitate reviews. --- .github/workflows/archive.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/archive.yml diff --git a/.github/workflows/archive.yml b/.github/workflows/archive.yml new file mode 100644 index 000000000..d41537923 --- /dev/null +++ b/.github/workflows/archive.yml @@ -0,0 +1,19 @@ +# archive creates and publishes an apk for testing +name: archive +on: [push] +jobs: + build: + runs-on: macos-latest + steps: + - uses: actions/setup-java@v2 + with: + java-version: '11' + distribution: 'temurin' + - name: checkout + uses: actions/checkout@v2 + - run: ./gradlew clean assembleDevFullRelease + - name: uploads dev apk + uses: actions/upload-artifact@v3 + with: + name: dev-apk + path: app/build/outputs/apk/devFull/release \ No newline at end of file