Skip to content

Commit

Permalink
feat : apk 생성
Browse files Browse the repository at this point in the history
  • Loading branch information
dogdduddy authored Mar 7, 2023
1 parent 081bacb commit 30e5486
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Android CI

on:
push:
branches: [ "master" ]
branches: [ "develop" ]
pull_request:
branches: [ "master" ]
branches: [ "develop" ]

jobs:
build:
Expand Down Expand Up @@ -36,3 +36,21 @@ jobs:
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} # required
if: always() # Pick up events even if the job fails or is canceled.

apk:
name: Generate APK
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build debug APK
run: bash ./gradlew assembleDebug --stacktrace
- name: Upload APK
uses: actions/upload-artifact@v1
with:
name: app
path: app/build/outputs/apk/debug

0 comments on commit 30e5486

Please sign in to comment.