Skip to content

Commit 36549c3

Browse files
committed
Deploy Production Code for Commit b15ee02 πŸš€
1 parent b15ee02 commit 36549c3

File tree

2,746 files changed

+121190
-108328
lines changed

Some content is hidden

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

2,746 files changed

+121190
-108328
lines changed

β€Žlib/git.jsβ€Ž

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,11 @@ function deploy(action) {
9696
yield (0, worktree_1.generateWorktree)(action, temporaryDeploymentDirectory, branchExists);
9797
/* Relaxes permissions of folder due to be deployed so rsync can write to/from it. */
9898
try {
99-
yield (0, execute_1.execute)(`chmod -R +rw ${action.folderPath}`, action.workspace, action.silent);
99+
yield (0, execute_1.execute)(`chmod -R +rw ${action.folderPath}`, action.workspace, true // Always silent to avoid flooding output on read-only folders
100+
);
100101
}
101102
catch (_a) {
102-
(0, core_1.info)(`Unable to modify permissions…`);
103+
// Silently ignore chmod failures - they are non-critical and often occur with read-only folders
103104
}
104105
// Ensures that items that need to be excluded from the clean job get parsed.
105106
let excludes = '';
@@ -214,7 +215,13 @@ function deploy(action) {
214215
// Cleans up temporary files/folders and restores the git state.
215216
(0, core_1.info)('Running post deployment cleanup jobs… πŸ—‘οΈ');
216217
yield (0, execute_1.execute)(`git checkout -B ${temporaryDeploymentBranch}`, `${action.workspace}/${temporaryDeploymentDirectory}`, action.silent);
217-
yield (0, execute_1.execute)(`chmod -R +rw ${temporaryDeploymentDirectory}`, action.workspace, action.silent);
218+
try {
219+
yield (0, execute_1.execute)(`chmod -R +rw ${temporaryDeploymentDirectory}`, action.workspace, true // Always silent to avoid flooding output on read-only folders
220+
);
221+
}
222+
catch (_b) {
223+
// Silently ignore chmod failures - they are non-critical and often occur with read-only folders
224+
}
218225
yield (0, execute_1.execute)(`git worktree remove ${temporaryDeploymentDirectory} --force`, action.workspace, action.silent);
219226
yield (0, io_1.rmRF)(temporaryDeploymentDirectory);
220227
}

β€Žnode_modules/.bin/js-yamlβ€Ž

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žnode_modules/@actions/exec/node_modules/@actions/io/LICENSE.mdβ€Ž

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žnode_modules/@actions/exec/node_modules/@actions/io/README.mdβ€Ž

Lines changed: 53 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žnode_modules/@actions/exec/node_modules/@actions/io/lib/io-util.d.tsβ€Ž

Lines changed: 21 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žnode_modules/@actions/exec/node_modules/@actions/io/lib/io-util.jsβ€Ž

Lines changed: 183 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žnode_modules/@actions/exec/node_modules/@actions/io/lib/io-util.js.mapβ€Ž

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
Β (0)