Skip to content
This repository has been archived by the owner on Aug 25, 2024. It is now read-only.

Commit

Permalink
Tentative de setup de GitActions pour commit
Browse files Browse the repository at this point in the history
  • Loading branch information
LeGeek01 authored Feb 9, 2024
1 parent 3b77836 commit 776e753
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/build apk.yml
Original file line number Diff line number Diff line change
@@ -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/

0 comments on commit 776e753

Please sign in to comment.