[1.5] Tweak logic to wake up the whole pack of Gargoyles when disturbed #11269
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 | |
on: | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- '*.md' | |
pull_request: | |
types: [ opened, synchronize ] | |
paths-ignore: | |
- '*.md' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install gettext | |
run: sudo apt-get update && sudo apt-get install -y gettext | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: 'adopt' | |
cache: gradle | |
- name: Cache CMake build folder | |
uses: actions/cache@v3 | |
with: | |
path: android-project/app/.cxx | |
key: ${{ github.workflow }}-v2-${{ github.sha }} | |
restore-keys: ${{ github.workflow }}-v2- | |
- name: Build | |
working-directory: ${{github.workspace}} | |
shell: bash | |
run: cd android-project && ./gradlew assembleDebug | |
- name: Upload-Package | |
if: ${{ !env.ACT }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: devilutionx-debug.apk | |
path: android-project/app/build/outputs/apk/debug/app-debug.apk | |
- name: Clean up artifacts | |
run: rm -rf android-project/app/build/outputs |