Set app version plugin change - Update android-publish.yml #40
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: Continuous integration | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: '17' | |
distribution: 'zulu' | |
cache: gradle | |
- name: Create google-services.json | |
uses: 1arp/create-a-file-action@0.2 | |
with: | |
path: app | |
file: google-services.json | |
content: ${{secrets.GOOGLE_SERVICES}} | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build with Lint check | |
run: ./gradlew lintFreeDebug |