Skip to content

Commit 62fec3a

Browse files
committed
Deploy Production Code for Commit 22a67fe 🚀
1 parent 22a67fe commit 62fec3a

File tree

1,765 files changed

+48869
-32600
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,765 files changed

+48869
-32600
lines changed

lib/worktree.js

+6
Original file line numberDiff line numberDiff line change
@@ -78,13 +78,19 @@ function generateWorktree(action, worktreedir, branchExists) {
7878
yield (0, execute_1.execute)(checkout.toString(), `${action.workspace}/${worktreedir}`, action.silent);
7979
}
8080
catch (error) {
81+
if (!action.silent) {
82+
console.error(error);
83+
}
8184
(0, core_1.info)('Error encountered while checking out branch. Attempting to continue with a new branch name.');
8285
branchName = `temp-${Date.now()}`;
8386
try {
8487
checkout = new GitCheckout(branchName, `origin/${action.branch}`);
8588
yield (0, execute_1.execute)(checkout.toString(), `${action.workspace}/${worktreedir}`, action.silent);
8689
}
8790
catch (error) {
91+
if (!action.silent) {
92+
console.error(error);
93+
}
8894
(0, core_1.info)('Unable to track the origin branch…');
8995
checkout = new GitCheckout(branchName);
9096
yield (0, execute_1.execute)(checkout.toString(), `${action.workspace}/${worktreedir}`, action.silent);

node_modules/.bin/uuid

-1
This file was deleted.

node_modules/@actions/core/README.md

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

node_modules/@actions/core/lib/command.js

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

node_modules/@actions/core/lib/command.js.map

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

node_modules/@actions/core/lib/core.d.ts

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

0 commit comments

Comments
 (0)