From a88f4a07b2b56b12af23d729bf18b2a9bab21eba Mon Sep 17 00:00:00 2001 From: Will Schurman Date: Sat, 11 Jan 2025 10:02:26 -0800 Subject: [PATCH] chore: commit built files from #319 (#323) --- build/continuous-deploy-fingerprint/index.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/build/continuous-deploy-fingerprint/index.js b/build/continuous-deploy-fingerprint/index.js index 7f76d65a..62bfd895 100644 --- a/build/continuous-deploy-fingerprint/index.js +++ b/build/continuous-deploy-fingerprint/index.js @@ -44584,6 +44584,7 @@ async function continuousDeployFingerprintAction(input = collectContinuousDeploy const updates = await publishEASUpdatesAsync({ cwd: input.workingDirectory, branch: input.branch, + platform: input.platform, }); if (!isInPullRequest) { (0, core_1.info)(`Skipped comment: action was not run from a pull request`); @@ -44737,10 +44738,10 @@ async function createEASBuildAsync({ cwd, profile, platform, }) { } return JSON.parse(stdout)[0]; } -async function publishEASUpdatesAsync({ cwd, branch, }) { +async function publishEASUpdatesAsync({ cwd, branch, platform = 'all', }) { let stdout; try { - const execOutput = await (0, exec_1.getExecOutput)(await (0, io_1.which)('eas', true), ['update', '--auto', '--branch', branch, '--non-interactive', '--json'], { + const execOutput = await (0, exec_1.getExecOutput)(await (0, io_1.which)('eas', true), ['update', '--auto', '--branch', branch, '--platform', platform, '--non-interactive', '--json'], { cwd, silent: !(0, core_1.isDebug)(), });