2019-11-19 23:06:27 +08:00
|
|
|
import * as core from "@actions/core";
|
|
|
|
import { execute } from "./util";
|
2019-11-20 22:13:01 +08:00
|
|
|
import { workspace, action, root, repositoryPath, isTest } from "./constants";
|
2019-11-19 23:06:27 +08:00
|
|
|
|
|
|
|
/** Generates the branch if it doesn't exist on the remote.
|
|
|
|
* @returns {Promise}
|
|
|
|
*/
|
|
|
|
export async function init(): Promise<any> {
|
|
|
|
try {
|
|
|
|
if (!action.accessToken && !action.gitHubToken) {
|
|
|
|
return core.setFailed(
|
|
|
|
"You must provide the action with either a Personal Access Token or the GitHub Token secret in order to deploy."
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (action.build.startsWith("/") || action.build.startsWith("./")) {
|
|
|
|
return core.setFailed(
|
|
|
|
`The deployment folder cannot be prefixed with '/' or './'. Instead reference the folder name directly.`
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
await execute(`git init`, workspace);
|
2019-11-22 23:01:06 +08:00
|
|
|
await execute(`git config user.name ${action.name}`, workspace);
|
|
|
|
await execute(`git config user.email ${action.email}`, workspace);
|
2019-11-19 23:06:27 +08:00
|
|
|
} catch (error) {
|
|
|
|
core.setFailed(`There was an error initializing the repository: ${error}`);
|
|
|
|
} finally {
|
|
|
|
return Promise.resolve("Initialization step complete...");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Generates the branch if it doesn't exist on the remote.
|
|
|
|
* @returns {Promise}
|
|
|
|
*/
|
|
|
|
export async function generateBranch(): Promise<any> {
|
|
|
|
try {
|
|
|
|
console.log(`Creating ${action.branch} branch...`);
|
|
|
|
await execute(`git switch ${action.baseBranch || "master"}`, workspace);
|
|
|
|
await execute(`git switch --orphan ${action.branch}`, workspace);
|
|
|
|
await execute(`git reset --hard`, workspace);
|
|
|
|
await execute(
|
|
|
|
`git commit --allow-empty -m "Initial ${action.branch} commit."`,
|
|
|
|
workspace
|
|
|
|
);
|
|
|
|
await execute(`git push ${repositoryPath} ${action.branch}`, workspace);
|
|
|
|
|
|
|
|
// Switches back to the base branch.
|
|
|
|
await execute(`git switch ${action.baseBranch || "master"}`, workspace);
|
|
|
|
} catch (error) {
|
|
|
|
core.setFailed(
|
|
|
|
`There was an error creating the deployment branch: ${error}`
|
|
|
|
);
|
|
|
|
} finally {
|
|
|
|
return Promise.resolve("Deployment branch creation step complete...");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Runs the necessary steps to make the deployment.
|
|
|
|
* @returns {Promise}
|
|
|
|
*/
|
|
|
|
export async function deploy(): Promise<any> {
|
|
|
|
const temporaryDeploymentDirectory = "gh-action-temp-deployment-folder";
|
|
|
|
const temporaryDeploymentBranch = "gh-action-temp-deployment-branch";
|
|
|
|
/*
|
|
|
|
Checks to see if the remote exists prior to deploying.
|
|
|
|
If the branch doesn't exist it gets created here as an orphan.
|
|
|
|
*/
|
|
|
|
const branchExists = await execute(
|
|
|
|
`git ls-remote --heads ${repositoryPath} ${action.branch} | wc -l`,
|
|
|
|
workspace
|
|
|
|
);
|
|
|
|
if (!branchExists) {
|
|
|
|
console.log("Deployment branch does not exist. Creating....");
|
|
|
|
await generateBranch();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Checks out the base branch to begin the deployment process.
|
|
|
|
await execute(`git checkout ${action.baseBranch || "master"}`, workspace);
|
2019-11-27 21:36:19 +08:00
|
|
|
await execute(`git fetch ${repositoryPath}`, workspace);
|
2019-11-19 23:06:27 +08:00
|
|
|
await execute(
|
|
|
|
`git worktree add --checkout ${temporaryDeploymentDirectory} origin/${action.branch}`,
|
|
|
|
workspace
|
|
|
|
);
|
|
|
|
|
|
|
|
/*
|
|
|
|
Pushes all of the build files into the deployment directory.
|
2019-11-22 22:58:00 +08:00
|
|
|
Allows the user to specify the root if '.' is provided.
|
|
|
|
rysync is used to prevent file duplication. */
|
|
|
|
await execute(
|
2019-12-16 23:29:29 +08:00
|
|
|
`rsync -q -av --progress ${action.build}/. ${
|
|
|
|
action.targetFolder
|
|
|
|
? `${temporaryDeploymentDirectory}/${action.targetFolder}`
|
|
|
|
: temporaryDeploymentDirectory
|
|
|
|
} ${
|
2019-11-22 22:58:00 +08:00
|
|
|
action.clean ? `--delete --exclude CNAME --exclude .nojekyll` : ""
|
|
|
|
} --exclude .git --exclude .github ${
|
|
|
|
action.build === root ? `--exclude ${temporaryDeploymentDirectory}` : ""
|
|
|
|
}`,
|
|
|
|
workspace
|
|
|
|
);
|
2019-11-19 23:06:27 +08:00
|
|
|
|
2019-11-20 07:07:27 +08:00
|
|
|
const hasFilesToCommit = await execute(
|
|
|
|
`git status --porcelain`,
|
|
|
|
temporaryDeploymentDirectory
|
|
|
|
);
|
|
|
|
|
2019-11-20 22:13:01 +08:00
|
|
|
if (!hasFilesToCommit && !isTest) {
|
2019-11-20 07:07:27 +08:00
|
|
|
console.log("There is nothing to commit. Exiting...");
|
|
|
|
return Promise.resolve();
|
|
|
|
}
|
|
|
|
|
2019-11-19 23:06:27 +08:00
|
|
|
// Commits to GitHub.
|
|
|
|
await execute(`git add --all .`, temporaryDeploymentDirectory);
|
|
|
|
await execute(
|
|
|
|
`git switch -c ${temporaryDeploymentBranch}`,
|
|
|
|
temporaryDeploymentDirectory
|
|
|
|
);
|
|
|
|
await execute(
|
|
|
|
`git commit -m "Deploying to ${action.branch} from ${action.baseBranch} ${process.env.GITHUB_SHA}" --quiet`,
|
|
|
|
temporaryDeploymentDirectory
|
|
|
|
);
|
|
|
|
await execute(
|
|
|
|
`git push --force ${repositoryPath} ${temporaryDeploymentBranch}:${action.branch}`,
|
|
|
|
temporaryDeploymentDirectory
|
|
|
|
);
|
|
|
|
|
|
|
|
return Promise.resolve("Commit step complete...");
|
|
|
|
}
|