Merge pull request #290 from Crazy-Marvin/dependabot/gradle/kotlin_ve… #459
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@v4 | |
- 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" |