Skip to content

Commit

Permalink
Defined Workflow for CI/CD Pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
KDvs123 committed Mar 31, 2024
1 parent 3bbd609 commit f399fa4
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/AndroidBuild.yml
Original file line number Diff line number Diff line change
@@ -1 +1,38 @@
name: AndroidBuild
on:
pull_request:
branches: [ main ]
push:
branches: [ main ]

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

- name: Setup Java JDK
uses: actions/setup-java@v4.2.1

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

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













0 comments on commit f399fa4

Please sign in to comment.