We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 25a1f61 + ae47435 commit c8e4fc8Copy full SHA for c8e4fc8
1 file changed
src/lib.ts
@@ -499,11 +499,11 @@ export async function createProvisioningProfiles(
499
) {
500
core.info('Creating provisioning profiles')
501
502
- for (const profile in mobileProfiles) {
+ for (const profile of mobileProfiles) {
503
await createProvisioningProfile(profile, '.mobileprovision')
504
}
505
506
- for (const profile in profiles) {
+ for (const profile of profiles) {
507
await createProvisioningProfile(profile, '.provisionprofile')
508
509
0 commit comments