Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit bc513b8

Browse files
committedFeb 2, 2022
Fix formatting
1 parent 80b1d4b commit bc513b8

File tree

3 files changed

+98
-98
lines changed

3 files changed

+98
-98
lines changed
 

‎dist/index.js

+90-90
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎dist/index.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎src/index.ts

+7-7
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ async function runMain() {
2323
await CloudRunner.run(buildParameters, baseImage.toString());
2424
} else {
2525
core.info('Building locally');
26-
await PlatformSetup.setup(buildParameters, actionFolder);
27-
if (process.platform === 'darwin') {
28-
MacBuilder.run(actionFolder, workspace, buildParameters);
29-
} else {
30-
builtImage = await Docker.build({ path: actionFolder, dockerfile, baseImage });
31-
await Docker.run(builtImage, { workspace, ...buildParameters });
32-
}
26+
await PlatformSetup.setup(buildParameters, actionFolder);
27+
if (process.platform === 'darwin') {
28+
MacBuilder.run(actionFolder, workspace, buildParameters);
29+
} else {
30+
builtImage = await Docker.build({ path: actionFolder, dockerfile, baseImage });
31+
await Docker.run(builtImage, { workspace, ...buildParameters });
32+
}
3333
}
3434

3535
// Set output

0 commit comments

Comments
 (0)
Please sign in to comment.