diff --git a/bitrise.yml b/bitrise.yml index 246367e..5502800 100644 --- a/bitrise.yml +++ b/bitrise.yml @@ -1,21 +1,33 @@ format_version: 0.9.10 default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git - app: envs: - # define these in your .bitrise.secrets.yml - - api_key: - - BITRISE_IPA_PATH: - - BITRISE_DSYM_PATH: - + - api_key: null + - BITRISE_IPA_PATH: null + - BITRISE_DSYM_PATH: null workflows: test: steps: - path::./: inputs: - notify: "off" + opts: {} - auto_update: "off" - - max_test_duration: "10m" - - video_recording: "off" + opts: {} + - max_test_duration: 10m + opts: {} + - opts: {} + video_recording: "off" - comment: "" - - tester_groups: "" + opts: {} + - opts: {} + tester_groups: "" + outputs: + - TESTFAIRY_PUBLIC_INSTALL_PAGE_URL: "" + opts: + title: Public Install Page URL + - script: + inputs: + - content: |- + #!/bin/bash + echo "TESTFAIRY_PUBLIC_INSTALL_PAGE_URL: ${TESTFAIRY_PUBLIC_INSTALL_PAGE_URL}" \ No newline at end of file diff --git a/step.yml b/step.yml index a1ac34c..640704c 100755 --- a/step.yml +++ b/step.yml @@ -110,4 +110,9 @@ inputs: is_required: false is_expand: false is_dont_change_value: false -outputs: [] +outputs: + - TESTFAIRY_PUBLIC_INSTALL_PAGE_URL: + opts: + title: Public Install Page URL + description: |- + Public Install Page's URL diff --git a/testfairy-upload-ios.sh b/testfairy-upload-ios.sh index 63d4563..933fe48 100755 --- a/testfairy-upload-ios.sh +++ b/testfairy-upload-ios.sh @@ -100,4 +100,6 @@ fi write_section_to_formatted_output "## Deploy Success" echo_string_to_formatted_output "* **Build URL**: [${URL}](${URL})" +envman add --key TESTFAIRY_PUBLIC_INSTALL_PAGE_URL --value "${URL}" + exit 0