futokb/.gitlab-ci.yml
2023-08-31 23:01:50 +03:00

23 lines
618 B
YAML

default:
image: "docker.io/abb128/android-build:latest@sha256:8df16e2badb5e42d2f5e3862683c7ff0ebdcc348affe059385e42eebef79302f"
variables:
GIT_SUBMODULE_STRATEGY: recursive
GIT_SUBMODULE_FORCE_HTTPS: "true"
stages: # List of stages for jobs, and their order of execution
- build
build:
stage: build
tags:
- docker
script:
- ./setUpPropertiesCI.sh
- gradle assembleRelease -s
- mv build/outputs/apk/release/latinime-release.apk ./LatinIME-release-$CI_COMMIT_SHORT_SHA.apk
artifacts:
name: "LatinIME-release-$CI_COMMIT_SHORT_SHA"
paths:
- ./*.apk
when: manual