added icon #2
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: Generate Apk | |
on: | |
push: | |
branches: | |
- "*" | |
jobs: | |
generate-apk: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repo | |
uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
- name: Set up Gradle with Cache | |
uses: gradle/gradle-build-action@v2 | |
- name: Generate Release Apk | |
run: ./gradlew assembleRelease --scan | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: Debug Apk | |
path: app/build/outputs/apk/release/app-release.apk |