Skip to content

Commit

Permalink
define workflow for CI CD pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
mutukuian committed May 12, 2024
1 parent a63608e commit e2f04fb
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/KocelaBuild.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: KocelaBuild
on:
pull_request:
branches:
- main
push:
branches:
- main

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

- name: Setup Java JDK
uses: actions/[email protected]

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

- name: Upload a Build Artifact
uses: actions/[email protected]
with:
name: KocelaInterview.apk
path: app/build/outputs/apk/app-debug.apk

0 comments on commit e2f04fb

Please sign in to comment.