mirror of
https://gitlab.com/futo-org/fcast.git
synced 2025-06-24 21:25:23 +00:00
13 lines
323 B
YAML
13 lines
323 B
YAML
stages:
|
|
- buildAndDeployApk
|
|
|
|
buildAndDeployApk:
|
|
stage: buildAndDeployApk
|
|
script:
|
|
- ./gradlew --stacktrace assembleRelease
|
|
- cp ./app/build/outputs/apk/release/app-release.apk /var/www/html/fcast-release.apk
|
|
- git describe --tags > /var/www/html/fcast-version.txt
|
|
only:
|
|
- tags
|
|
except:
|
|
- branches
|