Skip to content

Commit

Permalink
disable lint checks that cause error
Browse files Browse the repository at this point in the history
  • Loading branch information
detherminal committed Oct 2, 2024
1 parent 0951a57 commit dccf8b8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-apk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,20 +77,20 @@ jobs:

# Run Build Project
- name: Build gradle project
run: ./gradlew build --stacktrace --info
run: ./gradlew build -x lint --stacktrace --info

# Create APK Debug
- name: Build apk debug project (APK) - ${{ env.main_project_module }} module
run: ./gradlew assembleDebug
run: ./gradlew assembleDebug -x lint

# Create APK Release
- name: Build apk release project (APK) - ${{ env.main_project_module }} module
run: ./gradlew assemble
run: ./gradlew assemble -x lint

# Create Bundle AAB Release
# Noted for main module build [main_project_module]:bundleRelease
- name: Build app bundle release (AAB) - ${{ env.main_project_module }} module
run: ./gradlew ${{ env.main_project_module }}:bundleRelease
run: ./gradlew ${{ env.main_project_module }}:bundleRelease -x lint

# Upload Artifact Build
# Noted For Output [main_project_module]/build/outputs/apk/debug/
Expand Down

0 comments on commit dccf8b8

Please sign in to comment.