Merge pull request #230 from Crazy-Marvin/dependabot/gradle/com.andro… #332
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: "Assemble artifacts" | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout | |
- name: SCM | |
uses: actions/checkout@v2 | |
- name: "Make gradlew executable" | |
run: chmod +x ./gradlew | |
# Assemble artifacts | |
- name: Assemble | |
uses: vgaidarji/android-github-actions-build@v1.0.1 | |
with: | |
args: "./gradlew assemble" |