Skip to content

Commit

Permalink
Fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
sjchmiela committed Jan 23, 2025
1 parent c8dc414 commit 009f854
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 6 deletions.
2 changes: 0 additions & 2 deletions packages/build-tools/src/builders/custom.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,9 @@ import { CustomBuildContext } from '../customBuildContext';
import { resolveEnvFromBuildProfileAsync } from '../common/easBuildInternal';
import { getEasFunctionGroups } from '../steps/easFunctionGroups';
import { findAndUploadXcodeBuildLogsAsync } from '../ios/xcodeBuildLogs';
import { addEasWorkflows } from '../generic';

export async function runCustomBuildAsync(ctx: BuildContext<BuildJob>): Promise<Artifacts> {
const customBuildCtx = new CustomBuildContext(ctx);
await addEasWorkflows(customBuildCtx);
await prepareProjectSourcesAsync(ctx, customBuildCtx.projectSourceDirectory);
if (ctx.job.triggeredBy === BuildTrigger.GIT_BASED_INTEGRATION) {
// We need to setup envs from eas.json
Expand Down
2 changes: 1 addition & 1 deletion packages/build-tools/src/context.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export class BuildContext<TJob extends Job = Job> {
{
uses: 'eas/upload_artifact',
name: 'Upload build artifact',
inputs: {
with: {
type: 'application-archive',
path: '${{ steps.download_and_repack_golden_development_client_archive.outputs.repacked_archive_path }}',
},
Expand Down
3 changes: 0 additions & 3 deletions packages/build-tools/src/generic.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
import fs from 'fs';
import path from 'path';

import { BuildPhase, Generic } from '@expo/eas-build-job';
import { BuildStepGlobalContext, BuildWorkflow, errors, StepsConfigParser } from '@expo/steps';
import { Result, asyncResult } from '@expo/results';
Expand Down

0 comments on commit 009f854

Please sign in to comment.