Skip to content

Add temporary pixels for DMA choice screens #6988

Add temporary pixels for DMA choice screens

Add temporary pixels for DMA choice screens #6988

name: Build debug apk
on:
pull_request:
branches:
- develop
paths-ignore:
- '**.md'
- '.github/**'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build_debug_apk:
name: Build debug apk
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'adopt'
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '1.18.3'
- name: Build
uses: gradle/gradle-build-action@v2
with:
arguments: assembleInternalDebug -Pforce-default-variant
- name: Obtain debug apk
if: always()
run: cp $(find . -regex '.*outputs/apk/.*internal-debug.apk') pr-ddg-debug.apk
- name: Upload debug apk
if: always()
uses: actions/upload-artifact@v3
with:
name: pr-ddg-debug
path: pr-ddg-debug.apk