Skip to content

Commit

Permalink
Deploy Production Code for Commit 22a67fe 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesIves committed Nov 9, 2024
1 parent 22a67fe commit 62fec3a
Show file tree
Hide file tree
Showing 1,765 changed files with 48,869 additions and 32,600 deletions.
6 changes: 6 additions & 0 deletions lib/worktree.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,19 @@ function generateWorktree(action, worktreedir, branchExists) {
yield (0, execute_1.execute)(checkout.toString(), `${action.workspace}/${worktreedir}`, action.silent);
}
catch (error) {
if (!action.silent) {
console.error(error);
}
(0, core_1.info)('Error encountered while checking out branch. Attempting to continue with a new branch name.');
branchName = `temp-${Date.now()}`;
try {
checkout = new GitCheckout(branchName, `origin/${action.branch}`);
yield (0, execute_1.execute)(checkout.toString(), `${action.workspace}/${worktreedir}`, action.silent);
}
catch (error) {
if (!action.silent) {
console.error(error);
}
(0, core_1.info)('Unable to track the origin branch…');
checkout = new GitCheckout(branchName);
yield (0, execute_1.execute)(checkout.toString(), `${action.workspace}/${worktreedir}`, action.silent);
Expand Down
1 change: 0 additions & 1 deletion node_modules/.bin/uuid

This file was deleted.

151 changes: 151 additions & 0 deletions node_modules/@actions/core/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 8 additions & 4 deletions node_modules/@actions/core/lib/command.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion node_modules/@actions/core/lib/command.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions node_modules/@actions/core/lib/core.d.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 62fec3a

Please sign in to comment.