We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9621dc0 commit d992be2Copy full SHA for d992be2
.github/workflows/ios-manage-signing.yml
@@ -91,9 +91,9 @@ jobs:
91
[[ "${{ inputs.platform }}" == "flutter" ]] && cd ios
92
93
if [[ '${{ inputs.certificate-type }}' == 'distribution' || '${{ inputs.certificate-type }}' == 'both' ]]; then
94
- fastlane match_for_signing type:appstore refresh_certificates:true
95
- fastlane match_for_signing type:adhoc refresh_certificates:true
+ bundle exec fastlane match_for_signing type:appstore refresh_certificates:true
+ bundle exec fastlane match_for_signing type:adhoc refresh_certificates:true
96
fi
97
if [[ '${{ inputs.certificate-type }}' == 'development' || '${{ inputs.certificate-type }}' == 'both' ]]; then
98
- fastlane match_for_signing type:development refresh_certificates:true
+ bundle exec fastlane match_for_signing type:development refresh_certificates:true
99
0 commit comments