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 b37a363 commit 6b825fc
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,19 @@ jobs:
cache: gradle
- name: Build debug APK
run: bash ./gradlew assembleDebug --stacktrace

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

- name: Slack - Upload APK
uses: MeilCli/[email protected]
with:
slack_token: ${{ secrets.SLACK_TOKEN }}
channels: ${{ secrets.SLACK_CHANNEL }}
initial_comment: 'APK File Upload'
file_type: apk
file_name: app
file_path: app/build/outputs/apk/debug
file_path: 'app/build/outputs/apk/debug/app-debug.apk'
file_name: 'app-debug.apk'
file_type: 'apk'

0 comments on commit 6b825fc

Please sign in to comment.