mirror of
https://github.com/austinried/subtracks.git
synced 2025-12-27 00:59:28 +01:00
26 lines
762 B
YAML
26 lines
762 B
YAML
name: build
|
|
on: [push]
|
|
jobs:
|
|
build-release-debugsign:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: '14'
|
|
cache: 'yarn'
|
|
- run: |
|
|
yarn
|
|
- uses: gradle/wrapper-validation-action@v1
|
|
- uses: gradle/gradle-build-action@v1
|
|
with:
|
|
distributions-cache-enabled: true
|
|
dependencies-cache-enabled: true
|
|
configuration-cache-enabled: true
|
|
build-root-directory: android
|
|
arguments: assembleRelease -PsignReleaseWithDebug=true
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: app-release.apk
|
|
path: android/app/build/outputs/apk/release/app-release.apk
|