2023-07-14 20:29:00 +00:00
|
|
|
name: App
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
2023-07-15 20:48:28 +00:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- release
|
|
|
|
tags:
|
|
|
|
- '[0-9]+.[0-9]+.[0-9]+'
|
|
|
|
- '[0-9]+.[0-9]+.[0-9]+-rc\.[0-9]+(\.[0-9]+)?'
|
2023-07-14 20:29:00 +00:00
|
|
|
|
|
|
|
env:
|
|
|
|
# Our build metadata
|
|
|
|
BUILD_USER: builder
|
|
|
|
BUILD_HOST: github.syncthing.net
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2023-07-15 09:47:58 +00:00
|
|
|
name: Debug Build
|
2023-07-14 20:29:00 +00:00
|
|
|
if: github.event_name == 'pull_request'
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container: ghcr.io/syncthing/syncthing-android-builder
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
submodules: true
|
|
|
|
|
|
|
|
- name: build
|
|
|
|
run: |
|
|
|
|
java -version
|
|
|
|
./gradlew --no-daemon buildNative lint assembleDebug
|
|
|
|
|
|
|
|
- uses: actions/upload-artifact@v3
|
|
|
|
with:
|
2023-07-15 09:47:58 +00:00
|
|
|
name: syncthing-android-debug.apk
|
2023-07-14 20:29:00 +00:00
|
|
|
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/**
|
2023-07-15 20:48:28 +00:00
|
|
|
|
|
|
|
release:
|
|
|
|
name: Release Build and Publish
|
|
|
|
if: github.event_name == 'push'
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
container: ghcr.io/syncthing/syncthing-android-builder
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
submodules: true
|
|
|
|
|
|
|
|
- name: build_release
|
|
|
|
env:
|
|
|
|
SYNCTHING_RELEASE_KEY_ALIAS: android
|
|
|
|
SIGNING_PASSWORD: '${{ secrets.SIGNING_PASSWORD }}'
|
|
|
|
SYNCTHING_RELEASE_STORE_FILE: '${{ runner.temp }}/signing-keystore.jks'
|
|
|
|
SYNCTHING_RELEASE_PLAY_ACCOUNT_CONFIG_FILE: '${{ runner.temp }}/google-play-secrets.json'
|
|
|
|
shell: bash
|
|
|
|
run: |
|
|
|
|
set -eu -o pipefail
|
|
|
|
echo '${{ secrets.SIGNING_KEYSTORE_JKS_BASE64 }}' | base64 -d > "$SYNCTHING_RELEASE_STORE_FILE"
|
|
|
|
echo '${{ secrets.GOOGLE_PLAY_SECRETS_BASE64 }}' | base64 -d > "$SYNCTHING_RELEASE_PLAY_ACCOUNT_CONFIG_FILE"
|
|
|
|
java -version
|
2023-07-16 13:33:38 +00:00
|
|
|
./gradlew --no-daemon buildNative lint assembleRelease bundleRelease publishReleaseBundle
|
2023-07-15 20:48:28 +00:00
|
|
|
rm "$SYNCTHING_RELEASE_STORE_FILE" "$SYNCTHING_RELEASE_PLAY_ACCOUNT_CONFIG_FILE"
|
|
|
|
|
|
|
|
echo '${{ secrets.GNUPG_SIGNING_KEY_BASE64 }}' | base64 -d | gpg --import
|
|
|
|
cd app/build/outputs/apk/release
|
|
|
|
sha256sum app-release.apk | gpg --clearsign > sha256sum.txt.asc
|
|
|
|
|
|
|
|
- uses: ncipollo/release-action@v1
|
|
|
|
with:
|
|
|
|
artifacts: "app/build/outputs/apk/release/*.apk,app/build/outputs/apk/release/*.asc"
|
|
|
|
artifactErrorsFailBuild: true
|
|
|
|
bodyFile: "app/src/main/play/release-notes/en-GB/default.txt"
|
|
|
|
prerelease: ${{ contains('-rc.', github.ref_name) }}
|
|
|
|
draft: true
|