From 776e753d457e06af7d7f7bf2bdf6d1e836b40a0b Mon Sep 17 00:00:00 2001 From: LeGeek01 <54872374+LeGeek01@users.noreply.github.com> Date: Fri, 9 Feb 2024 17:26:47 +0100 Subject: [PATCH] Tentative de setup de GitActions pour commit --- .github/workflows/build apk.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/build apk.yml diff --git a/.github/workflows/build apk.yml b/.github/workflows/build apk.yml new file mode 100644 index 00000000..7cc8bc52 --- /dev/null +++ b/.github/workflows/build apk.yml @@ -0,0 +1,20 @@ +on: + push + +name: Build APK +jobs: + build-android: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Install npm dependencies + run: | + npm install + - name: Build Android Release + run: | + cd android && ./gradlew assembleRelease + - name: Upload Artifact + uses: actions/upload-artifact@v1 + with: + name: app-release.apk + path: android/app/build/outputs/apk/release/