Skip to content

Commit

Permalink
Create CI / CD
Browse files Browse the repository at this point in the history
  • Loading branch information
aspsptyd authored Oct 23, 2024
1 parent 715a9c6 commit ef6b082
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/AndroidBuild.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: AndroidBuild
on:
pull_request :
branches: [ master ]
push :
branches: [ master ]

jobs:
build:
runs-on: ubuntu-latest
steps:
- name : Checkout
uses: actions/[email protected]

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

- name : Build with Gradle
run : ./gradlew build

- name : Upload a Build Artifact
uses: actions/upload-artifact@v4
with:
name: AndoridRelease.apk
path: app/build/outputs/apk/debug/app-debug.apk

0 comments on commit ef6b082

Please sign in to comment.