-
Notifications
You must be signed in to change notification settings - Fork 4
/
bitrise.yml
61 lines (57 loc) · 2.08 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
49
50
51
52
53
54
55
56
57
58
59
60
61
format_version: "11"
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
workflows:
check:
steps:
- git::https://github.com/bitrise-steplib/steps-check.git: { }
e2e:
steps:
- git::https://github.com/bitrise-steplib/steps-check.git:
inputs:
- workflow: e2e
generate_readme:
steps:
- git::https://github.com/bitrise-steplib/steps-readme-generator.git@main:
inputs:
- contrib_section: docs/contribution.md
sample:
envs:
- TEST_APP_URL: https://github.com/bitrise-io/sample-apps-fastlane-test.git
- TEST_APP_BRANCH: master
- BITRISE_PROJECT_PATH: sample-apps-fastlane-test.xcodeproj
- BITRISE_SCHEME: sample-apps-fastlane-test
- IPA_EXPORT_METHOD: development
- APPSTORECONNECT_API_KEY_URL: $APPSTORECONNECT_API_KEY_URL
- APPSTORECONNECT_API_KEY_ISSUER: $APPSTORECONNECT_API_KEY_ISSUER
- BITRISE_CERTIFICATE_URL: $BITRISE_CERTIFICATE_URL
- BITRISE_CERTIFICATE_PASSPHRASE: $BITRISE_CERTIFICATE_PASSPHRASE
- BITRISE_KEYCHAIN_PATH: $BITRISE_KEYCHAIN_PATH
- BITRISE_KEYCHAIN_PASSWORD: $BITRISE_KEYCHAIN_PASSWORD
steps:
- script:
inputs:
- content: |-
#!/bin/env bash
set -ex
rm -rf ./_tmp
- git::https://github.com/bitrise-steplib/bitrise-step-simple-git-clone.git@master:
inputs:
- repository_url: $TEST_APP_URL
- branch: $TEST_APP_BRANCH
- clone_into_dir: ./_tmp
- path::./:
run_if: "true"
inputs:
- connection: "off"
- api_key_path: $APPSTORECONNECT_API_KEY_URL
- api_issuer: $APPSTORECONNECT_API_KEY_ISSUER
- certificate_urls: $BITRISE_CERTIFICATE_URL
- passphrases: $BITRISE_CERTIFICATE_PASSPHRASE
- distribution_type: $IPA_EXPORT_METHOD
- project_path: ./_tmp/$BITRISE_PROJECT_PATH
- scheme: $BITRISE_SCHEME
- keychain_path: $BITRISE_KEYCHAIN_PATH
- keychain_password: $BITRISE_KEYCHAIN_PASSWORD
- verbose_log: "yes"
- sign_uitest_targets: "yes"
- register_test_devices: "no"