File tree Expand file tree Collapse file tree 1 file changed +12
-4
lines changed
Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -457,7 +457,7 @@ workflows:
457457
458458 _run :
459459 envs :
460- - PROFILES_PATH : " ~/Library/Developer/Xcode/UserData/Provisioning\ Profiles"
460+ - PROFILES_PATH : ~/Library/Developer/Xcode/UserData/Provisioning Profiles
461461 before_run :
462462 - _generate_api_token
463463 steps :
@@ -479,12 +479,20 @@ workflows:
479479 rm -rf ~/Library/MobileDevice/Provisioning\ Profiles
480480 ls -la ~/Library/MobileDevice/Provisioning\ Profiles
481481
482- rm -rf $PROFILES_PATH
483- ls -la $PROFILES_PATH
482+ rm -rf " $PROFILES_PATH"
483+ ls -la " $PROFILES_PATH"
484484 - restore-cache :
485485 run_if : " true"
486486 inputs :
487487 - key : xcode-profiles-cache
488+ - script :
489+ title : List profiles
490+ run_if : .IsCI
491+ inputs :
492+ - content : |-
493+ #!/bin/bash
494+ set -ex
495+ ls -la "$PROFILES_PATH"
488496 - git::https://github.com/bitrise-steplib/bitrise-step-simple-git-clone.git :
489497 inputs :
490498 - repository_url : $TEST_APP_URL
@@ -516,6 +524,7 @@ workflows:
516524 run_if : " true"
517525 inputs :
518526 - key : xcode-profiles-cache
527+ - verbose : " yes"
519528 - cache_paths : |-
520529 $PROFILES_PATH
521530
@@ -680,4 +689,3 @@ workflows:
680689
681690 envman add --key BITRISEIO_ABCS_API_URL --value $BITRISEIO_CACHE_SERVICE_URL
682691 envman add --key BITRISEIO_BITRISE_SERVICES_ACCESS_TOKEN --value $auth_token --sensitive
683-
You can’t perform that action at this time.
0 commit comments