1
0
Fork 0
mirror of https://github.com/syncthing/syncthing-android.git synced 2024-11-22 20:31:16 +00:00
syncthing-android/.github/workflows/build-app.yaml
bt90 c333d858ab
Set a custom build user (#1978)
We need a dedicated build user to be able to distinguish the
distribution channel. See
https://github.com/syncthing/syncthing/issues/9140
2023-09-29 18:13:00 +02:00

42 lines
929 B
YAML

name: Build App
on:
pull_request:
push:
branches:
- main
- release
env:
# Our build metadata
BUILD_USER: android-builder
BUILD_HOST: github.syncthing.net
jobs:
build:
name: Debug Build
runs-on: ubuntu-latest
container: ghcr.io/syncthing/syncthing-android-builder
steps:
- uses: actions/checkout@v3
with:
submodules: true
fetch-depth: 0
- name: build
run: |
git config --system --add safe.directory '*'
java -version
./gradlew --no-daemon buildNative lint assembleDebug
- uses: actions/upload-artifact@v3
with:
name: syncthing-android-debug.apk
path: app/build/outputs/apk/debug/app-debug.apk
- uses: actions/upload-artifact@v3
with:
name: reports-and-libs
path: |
app/build/reports/**
app/src/main/jniLibs/**