Skip to content

Commit 1f763bb

Browse files
fix app id
1 parent 29bb7cc commit 1f763bb

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58079,8 +58079,8 @@ async function GetProjectDetails(credential, xcodeVersion) {
5807958079
core.info(`CFBundleVersion: ${cFBundleVersion}`);
5808058080
const projectRef = new XcodeProject_1.XcodeProject(projectPath, projectName, platform, destination, bundleId, projectDirectory, cFBundleShortVersionString, cFBundleVersion, scheme, credential, xcodeVersion);
5808158081
await getExportOptions(projectRef);
58082+
projectRef.appId = await (0, AppStoreConnectClient_1.GetAppId)(projectRef);
5808258083
if (projectRef.isAppStoreUpload() && core.getInput('auto-increment-build-number') === 'true') {
58083-
projectRef.appId = await (0, AppStoreConnectClient_1.GetAppId)(projectRef);
5808458084
let bundleVersion = -1;
5808558085
try {
5808658086
bundleVersion = await (0, AppStoreConnectClient_1.GetLatestBundleVersion)(projectRef);

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/xcode.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,8 +116,8 @@ export async function GetProjectDetails(credential: AppleCredential, xcodeVersio
116116
xcodeVersion
117117
);
118118
await getExportOptions(projectRef);
119+
projectRef.appId = await GetAppId(projectRef);
119120
if (projectRef.isAppStoreUpload() && core.getInput('auto-increment-build-number') === 'true') {
120-
projectRef.appId = await GetAppId(projectRef);
121121
let bundleVersion = -1;
122122
try {
123123
bundleVersion = await GetLatestBundleVersion(projectRef);

0 commit comments

Comments
 (0)