chore(deps): bump org.jetbrains.kotlin.android from 1.7.10 to 1.9.20 #279
Workflow file for this run
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 Build | |
on: push | |
jobs: | |
build: | |
name: Build app | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: SETUP JVM 17 | |
uses: actions/setup-java@v2 | |
with: | |
distribution: zulu | |
java-version: 17 | |
- name: Print JVM version | |
run: javac -version | |
- name: Wrapper permissions | |
run: chmod +x ./gradlew | |
- name: Build | |
run: ./gradlew assemble -PrepositoryUsername=${{secrets.ARTIFACTORY_USERNAME}} -PrepositoryIdentityToken=${{secrets.ARTIFACTORY_PASSWORD}} -PtomtomApiKey=${{secrets.TOMTOM_API_KEY}} |