Skip to content

Commit

Permalink
delete debug
Browse files Browse the repository at this point in the history
  • Loading branch information
dogdduddy authored Mar 7, 2023
1 parent f0f5781 commit 7715790
Showing 1 changed file with 2 additions and 30 deletions.
32 changes: 2 additions & 30 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,36 +7,6 @@ on:
branches: [ "develop" ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
cache: gradle

- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build

- name: action-slack
uses: 8398a7/action-slack@v3
with:
status: ${{ job.status }}
author_name: Sloth Backend - dev
fields: repo,commit,message,author # action,eventName,ref,workflow,job,took 추가할 수 있음
mention: here
if_mention: failure,cancelled
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
Expand All @@ -47,6 +17,8 @@ jobs:
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
cache: gradle
- name: Build debug APK
run: bash ./gradlew assembleDebug --stacktrace
- name: Upload APK
Expand Down

0 comments on commit 7715790

Please sign in to comment.