diff --git a/bitrise.yml b/bitrise.yml index 5502800..67d4ee6 100644 --- a/bitrise.yml +++ b/bitrise.yml @@ -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}" \ No newline at end of file + 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}"