Skip to content

Commit 0f24da7

Browse files
committed
Deploy Production Code for Commit 266436c 🚀
1 parent 266436c commit 0f24da7

Some content is hidden

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

83 files changed

+25889
-7403
lines changed

lib/git.js

+3
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,9 @@ function deploy(action) {
104104
: ''} --exclude .ssh --exclude .git --exclude .github ${action.folderPath === action.workspace
105105
? `--exclude ${temporaryDeploymentDirectory}`
106106
: ''}`, action.workspace, action.silent);
107+
if (action.singleCommit) {
108+
yield execute_1.execute(`git add --all .`, `${action.workspace}/${temporaryDeploymentDirectory}`, action.silent);
109+
}
107110
// Use git status to check if we have something to commit.
108111
// Special case is singleCommit with existing history, when
109112
// we're really interested if the diff against the upstream branch

node_modules/@actions/core/README.md

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

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

+1-2
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

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

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

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

node_modules/@actions/core/lib/core.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/utils.d.ts

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

0 commit comments

Comments
 (0)