mirror of
https://github.com/austinried/subtracks.git
synced 2025-12-27 00:59:28 +01:00
20 lines
515 B
YAML
20 lines
515 B
YAML
name: build
|
|
on: [push]
|
|
jobs:
|
|
Explore-GitHub-Actions:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: '14'
|
|
cache: 'yarn'
|
|
- run: |
|
|
yarn
|
|
- run: |
|
|
./android/gradlew -p android assembleRelease -PsignReleaseWithDebug=true
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: app-release.apk
|
|
path: android/app/build/outputs/apk/release/app-release.apk
|