-
Notifications
You must be signed in to change notification settings - Fork 0
/
bitrise.yml
48 lines (48 loc) · 1.39 KB
/
bitrise.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
---
format_version: 1.3.1
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
trigger_map:
- push_branch: "*"
workflow: primary
workflows:
primary:
steps:
- activate-ssh-key@3.1.1:
run_if: '{{getenv "SSH_RSA_PRIVATE_KEY" | ne ""}}'
- git-clone@3.5.2: {}
- file-downloader@0.9.1:
run_if: ".IsCI"
title: Keystore Download
inputs:
- source: "$BITRISEIO_ANDROID_KEYSTORE_URL"
- destination: "$BITRISE_SOURCE_DIR/android/release.keystore"
- file-downloader@0.9.1:
run_if: ".IsCI"
title: Release Properties Download
inputs:
- source: "$BITRISEIO_RELEASE_PROPERTIES_URL"
- destination: "$BITRISE_SOURCE_DIR/android/release.properties"
- file-downloader@0.9.1:
run_if: ".IsCI"
title: Shared Properties Download
inputs:
- source: "$BITRISEIO_SHARED_PROPERTIES_URL"
- destination: "$BITRISE_SOURCE_DIR/android/shared.properties"
- install-missing-android-tools@2.0.2: {}
- gradle-runner@1.7.7:
inputs:
- gradle_task: "$GRADLE_TASK"
- deploy-to-bitrise-io@1.3.7:
inputs:
- notify_user_groups: none
app:
envs:
- opts:
is_expand: false
GRADLE_BUILD_FILE_PATH: build.gradle
- opts:
is_expand: false
GRADLE_TASK: assembleRelease
- opts:
is_expand: false
GRADLEW_PATH: "./gradlew"