Skip to content

Merge pull request #190 from Tribler/InvictusRMC-patch-1 #1

Merge pull request #190 from Tribler/InvictusRMC-patch-1

Merge pull request #190 from Tribler/InvictusRMC-patch-1 #1

Workflow file for this run

name: Build Debug APK
on:
pull_request:
push:
branches: master
jobs:
apk:
name: Build Debug APK
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: ./.github/actions/checkout_submodules
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '17'
cache: 'gradle'
- name: Build debug APK
run: ./gradlew assembleDebug --no-daemon
- name: Upload APK
uses: actions/upload-artifact@v1
with:
name: app
path: app/build/outputs/apk/debug/app-debug.apk