Let PMS parse target app name #77
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: Pull Request | |
on: pull_request | |
jobs: | |
build: | |
name: Build on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-latest ] | |
if: ${{ !startsWith(github.event.head_commit.message, 'docs:') }} | |
steps: | |
- name: Check out | |
uses: actions/checkout@v3 | |
with: | |
submodules: 'recursive' | |
fetch-depth: 0 | |
- name: Gradle wrapper validation | |
uses: gradle/wrapper-validation-action@v1 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '21' | |
distribution: 'temurin' | |
- name: Write properties | |
run: | | |
echo buildWithGitSuffix=true >> local.properties | |
- name: Gradle prebuild | |
run: | | |
echo 'org.gradle.jvmargs=-Xmx2048m' >> gradle.properties | |
./gradlew prebuild | |
- name: Build debug | |
id: buildDebug | |
run: | | |
./gradlew :app:assembleDebug | |
echo "debugName=$(ls app/build/apk/debug/HMA*-debug.apk | awk -F '(/|.apk)' '{print $6}')" >> $GITHUB_OUTPUT |