Skip to content

Commit

Permalink
Merge pull request #3 from github-actions branch
Browse files Browse the repository at this point in the history
Create android-build.yml
  • Loading branch information
amitsid1408 authored Apr 19, 2024
2 parents 226f572 + 24cd14b commit 3355913
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/android-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Android stage build

on:
push:
branches:
- "development"


jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup Java SDK 17
uses: actions/setup-java@v3
with:
distribution: 'adopt'
java-version: 17

- name: Run with Gradle
run: |
./gradlew clean
./gradlew bundleStage

0 comments on commit 3355913

Please sign in to comment.