Caster/.woodpecker.yml
Balazs Toldi 6c7ce4b383
Removed deployment stages
Signed-off-by: Balazs Toldi <balazs@toldi.eu>
2022-01-04 17:41:20 +01:00

14 lines
465 B
YAML

pipeline:
gradleBuild:
image: androidsdk/android-30:latest
commands:
- export VERSION_CODE=$(git rev-list --first-parent --count HEAD)
- export PN=$PACKAGE_NAME
- export V=$VERSION
- export APK=$${PN}_$${V}$${VERSION_CODE}.apk
- echo $APK
- ./gradlew assemble
- cp app/build/outputs/apk/release/app-release-unsigned.apk $${APK}
environment:
PACKAGE_NAME: eu.toldi.balazs.caster
VERSION: 010