Skip to content

Commit

Permalink
[eas-cli] allow running eas/build function group with credentials for…
Browse files Browse the repository at this point in the history
… iOS GH builds (#480)

* [eas-cli] allow running eas/build function group with credentials for iOS GH builds

* remove not necessary line
  • Loading branch information
szdziedzic authored Dec 20, 2024
1 parent c4fa37c commit cff4555
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/build-tools/src/steps/functionGroups/build.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,7 @@ export function createEasBuildBuildFunctionGroup(
id: 'build',
createBuildStepsFromFunctionGroupCall: (globalCtx) => {
if (buildToolsContext.job.platform === Platform.IOS) {
// eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing
if (buildToolsContext.job.simulator || !buildToolsContext.job.secrets?.buildCredentials) {
if (buildToolsContext.job.simulator) {
return createStepsForIosSimulatorBuild({
globalCtx,
buildToolsContext,
Expand Down

0 comments on commit cff4555

Please sign in to comment.