-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
67a81c4
commit f3b7cc5
Showing
1 changed file
with
15 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,30 @@ | ||
format_version: 0.9.10 | ||
format_version: 1.1.0 | ||
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git | ||
|
||
app: | ||
envs: | ||
- api_key: null | ||
- BITRISE_IPA_PATH: null | ||
- BITRISE_DSYM_PATH: null | ||
# define these in your .bitrise.secrets.yml | ||
- api_key: | ||
- BITRISE_IPA_PATH: | ||
- BITRISE_DSYM_PATH: | ||
|
||
workflows: | ||
test: | ||
steps: | ||
- path::./: | ||
inputs: | ||
- notify: "off" | ||
opts: {} | ||
- auto_update: "off" | ||
opts: {} | ||
- max_test_duration: 10m | ||
opts: {} | ||
- opts: {} | ||
video_recording: "off" | ||
- max_test_duration: "10m" | ||
- video_recording: "off" | ||
- comment: "" | ||
opts: {} | ||
- opts: {} | ||
tester_groups: "" | ||
outputs: | ||
- TESTFAIRY_PUBLIC_INSTALL_PAGE_URL: "" | ||
opts: | ||
title: Public Install Page URL | ||
- tester_groups: "" | ||
- script: | ||
inputs: | ||
- content: |- | ||
#!/bin/bash | ||
echo "TESTFAIRY_PUBLIC_INSTALL_PAGE_URL: ${TESTFAIRY_PUBLIC_INSTALL_PAGE_URL}" | ||
if [[ "$TESTFAIRY_PUBLIC_INSTALL_PAGE_URL" == "" ]] ; then | ||
echo "No TESTFAIRY_PUBLIC_INSTALL_PAGE_URL env available!!" | ||
exit 1 | ||
fi | ||
echo "TESTFAIRY_PUBLIC_INSTALL_PAGE_URL: ${TESTFAIRY_PUBLIC_INSTALL_PAGE_URL}" |
f3b7cc5
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This part should be kept, no ?
f3b7cc5
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not required to have it in the
bitrise.yml
@guitcastro , it have to be in thestep.yml
but you only have to list the things you want to change in thebitrise.yml
.f3b7cc5
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@viktorbenei I just realised this is not the
step.yml
file. Sorry I should pay more attention ;pf3b7cc5
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No problem at all 😀