We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06ba09a commit 97922e0Copy full SHA for 97922e0
README.md
@@ -15,3 +15,25 @@ yarn add @getluko/android-rollout-node --dev
15
```
16
npx android-rollout-node com.package.app production ./api-google-service_account.json
17
18
+
19
+## Gitlab CI integration
20
21
+- .gitlab-ci.yml
22
23
+```
24
+stages:
25
+ - android_rollout
26
27
+android_rollout:
28
+ rules:
29
+ - if: $CI_PIPELINE_SOURCE == "schedule" && $SCHEDULE_TYPE == "android_rollout"
30
+ stage: android_rollout
31
+ script:
32
+ - yarn
33
+ - yarn release:rollout:android:ci
34
35
36
+- $SCHEDULE_TYPE should be configure as `android_rollout` in variables
37
+- Schedule cron to run it everyday of the week at 10am `0 10 * * 1-7`
38
39
+
docs/gitlab_schedule_pipeline.png
59.3 KB
0 commit comments