Final fix lint error. #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Android CI | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: set up JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: gradle | |
- name: Install Dependecies | |
run: sudo apt install tree | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build with Gradle | |
run: ./gradlew build | |
- name: Upload a Lint logs | |
uses: actions/upload-artifact@v3.1.0 | |
with: | |
name: Upload lint logs for debugging | |
path: | | |
app/build/intermediates/lint_intermediate_text_report/debug/lint-results-debug.txt | |
- name: List Files & Folders | |
run: tree | |
- name: Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
token: ${{ secrets.PAT_GITHUB_TOKEN }} | |
tag_name: workflow_${{github.run_number}} | |
name: Release ${{github.run_number}} | |
files: | | |
app/build/outputs/apk/debug/app-debug.apk |