Skip to content

Commit

Permalink
chore: send provisioning profile name back to step (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
OmalPerera authored Dec 12, 2024
1 parent d75556b commit 83ecf35
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dist/task/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -841,8 +841,9 @@ function installProvisioningProfileTask() {
try {
const info = yield sign.installProvisioningProfile(provisioningProfileFile);
// set the provisioning profile output variable.
core.debug("setting environment variables privisioningProfileUuid & Name");
core.debug("setting environment variables provisioning ProfileUuid & Name");
core.setOutput("APPLE_PROV_PROFILE_UUID", info.provProfileUUID);
core.setOutput("APPLE_PROV_PROFILE_NAME", info.provProfileName || "");
core.exportVariable("provisioningProfileUuid", info.provProfileUUID);
core.exportVariable("provisioningProfileName", info.provProfileName || "");
}
Expand Down

0 comments on commit 83ecf35

Please sign in to comment.