ghaction-github-pages/src/main.ts

120 lines
4.4 KiB
TypeScript
Raw Normal View History

import addressparser from 'addressparser';
import * as fs from 'fs';
2019-11-15 22:57:27 +08:00
import * as os from 'os';
import * as path from 'path';
import * as core from '@actions/core';
import * as git from './git';
2020-11-12 13:27:44 +08:00
import * as util from './util';
2019-10-11 07:41:16 +08:00
async function run() {
try {
const repo: string = core.getInput('repo') || process.env['GITHUB_REPOSITORY'] || '';
const domain: string = process.env['GIT_DOMAIN'] || 'github.com';
const targetBranch: string = core.getInput('target_branch') || git.defaults.targetBranch;
const keepHistory: boolean = /true/i.test(core.getInput('keep_history'));
const allowEmptyCommit: boolean = /true/i.test(core.getInput('allow_empty_commit'));
const buildDir: string = core.getInput('build_dir', {required: true});
const committer: string = core.getInput('committer') || git.defaults.committer;
const author: string = core.getInput('author') || git.defaults.author;
const commitMessage: string = core.getInput('commit_message') || git.defaults.message;
const fqdn: string = core.getInput('fqdn');
2020-06-25 15:38:28 +08:00
const nojekyll: boolean = /false/i.test(core.getInput('jekyll'));
2019-10-11 07:41:16 +08:00
if (!fs.existsSync(buildDir)) {
core.setFailed('Build dir does not exist');
2019-10-11 07:41:16 +08:00
return;
}
let remoteURL = String('https://');
if (process.env['GH_PAT']) {
2020-11-12 13:27:44 +08:00
core.debug(`Use GH_PAT`);
remoteURL = remoteURL.concat(process.env['GH_PAT'].trim());
} else if (process.env['GITHUB_TOKEN']) {
2020-11-12 13:27:44 +08:00
core.debug(`Use GITHUB_TOKEN`);
remoteURL = remoteURL.concat('x-access-token:', process.env['GITHUB_TOKEN'].trim());
} else {
core.setFailed('You have to provide a GITHUB_TOKEN or GH_PAT');
return;
}
remoteURL = remoteURL.concat('@', domain, '/', repo, '.git');
core.debug(`remoteURL=${remoteURL}`);
const remoteBranchExists: boolean = await git.remoteBranchExists(remoteURL, targetBranch);
core.debug(`remoteBranchExists=${remoteBranchExists}`);
2019-11-15 22:57:27 +08:00
const tmpdir = fs.mkdtempSync(path.join(os.tmpdir(), 'github-pages-'));
core.debug(`tmpdir=${tmpdir}`);
2019-11-15 23:29:46 +08:00
const currentdir = path.resolve('.');
core.debug(`currentdir=${currentdir}`);
2019-11-15 22:57:27 +08:00
process.chdir(tmpdir);
if (keepHistory && remoteBranchExists) {
2020-07-20 00:29:36 +08:00
core.info(`🌀 Cloning ${repo}`);
await git.clone(remoteURL, targetBranch, '.');
} else {
core.info(`✨ Initializing local git repo`);
await git.init('.');
await git.checkout(targetBranch);
}
2020-11-12 13:27:44 +08:00
await core.group(`🏃 Copying ${path.join(currentdir, buildDir)} contents to ${tmpdir}`, async () => {
await util.copyDir(path.join(currentdir, buildDir), tmpdir);
2020-08-06 21:04:46 +08:00
});
2019-11-15 23:36:31 +08:00
if (fqdn) {
core.info(`✍️ Writing ${fqdn} domain name to ${path.join(tmpdir, 'CNAME')}`);
await fs.writeFileSync(path.join(tmpdir, 'CNAME'), fqdn.trim());
2019-11-15 23:36:31 +08:00
}
2020-06-25 15:38:28 +08:00
if (nojekyll) {
core.info(`🚫 Disabling Jekyll support via ${path.join(tmpdir, '.nojekyll')}`);
await fs.writeFileSync(path.join(tmpdir, '.nojekyll'), '');
}
const isDirty: boolean = await git.isDirty();
core.debug(`isDirty=${isDirty}`);
if (keepHistory && remoteBranchExists && !isDirty) {
core.info('⚠️ No changes to commit');
2020-02-11 20:38:54 +08:00
return;
}
const committerPrs: addressparser.Address = addressparser(committer)[0];
core.info(`🔨 Configuring git committer as ${committerPrs.name} <${committerPrs.address}>`);
await git.setConfig('user.name', committerPrs.name);
await git.setConfig('user.email', committerPrs.address);
2019-10-11 07:41:16 +08:00
if (!(await git.hasChanges())) {
core.info('⚠️ Nothing to deploy');
2019-10-11 07:41:16 +08:00
return;
}
core.info(`📐 Updating index of working tree`);
await git.add('.');
if (allowEmptyCommit) {
2020-11-12 13:27:44 +08:00
core.debug(`Allow empty commit`);
}
const authorPrs: addressparser.Address = addressparser(author)[0];
2020-11-12 13:27:44 +08:00
await core.group(`📦 Committing changes as ${authorPrs.name} <${authorPrs.address}> author`, async () => {
await git.commit(allowEmptyCommit, `${authorPrs.name} <${authorPrs.address}>`, commitMessage);
await git.showStat().then(output => {
core.info(output);
});
});
core.info(`🏃 Pushing ${buildDir} directory to ${targetBranch} branch on ${repo} repo`);
if (!keepHistory) {
2020-11-12 13:27:44 +08:00
core.debug(`Force push`);
}
await git.push(remoteURL, targetBranch, !keepHistory);
2019-10-11 07:41:16 +08:00
2019-11-15 23:29:46 +08:00
process.chdir(currentdir);
2020-05-11 21:10:43 +08:00
core.info(`🎉 Content of ${buildDir} has been deployed to GitHub Pages`);
2019-10-11 07:41:16 +08:00
} catch (error) {
core.setFailed(error.message);
}
}
run();