forked from bitrise-io/bitrise-steplib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bitrise.yml
41 lines (37 loc) · 1.14 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
format_version: 1.1.0
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
app:
envs:
- AWS_ACCESS_KEY_ID: $AWS_ACCESS_KEY_ID
- AWS_SECRET_ACCESS_KEY: $AWS_SECRET_ACCESS_KEY
- S3_UPLOAD_BUCKET: $S3_UPLOAD_BUCKET
- S3_UPLOAD_BUCKET_REGION: $S3_UPLOAD_BUCKET_REGION
- ALGOLIA_APP_ID: $ALGOLIA_APP_ID
- ALGOLIA_API_KEY: $ALGOLIA_API_KEY
workflows:
full_audit:
title: Full Audit
description: Performs a full audit on the collection.
steps:
- path::./handlers/validate:
- path::./handlers/audit:
deploy:
title: Deploy
description: Deploys the StepLib to Amazon S3
before_run:
- full_audit
steps:
- path::./handlers/validate:
- path::./handlers/generate-specs:
- path::./handlers/algolia-deploy:
- path::./handlers/deploy:
- deploy-to-bitrise-io:
pr_audit:
title: Pull Request audit
description: Performs an audit only on the changed step.yml files, and on the related Steps.
steps:
- path::./handlers/protected-files:
- path::./handlers/step-info:
- path::./handlers/validate:
- path::./handlers/generate-specs:
- path::./handlers/audit: