Skip to content

Commit

Permalink
Merge pull request #2 from Sadwhy/Main
Browse files Browse the repository at this point in the history
Workflow
  • Loading branch information
brahmkshatriya authored Feb 4, 2024
2 parents a62448a + 089fda1 commit 8ed9efb
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: build

on: [push, pull_request, workflow_dispatch]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repo
uses: actions/checkout@v3

- name: Setup JDK 17
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 17

- name: Make gradlew executable
run: chmod +x ./gradlew

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

- uses: actions/upload-artifact@v3
with:
name: app-debug.apk
path: app/build/outputs/apk/debug/app-debug.apk

0 comments on commit 8ed9efb

Please sign in to comment.