mirror of
https://github.com/SamKirkland/FTP-Deploy-Action.git
synced 2025-08-14 14:05:05 +00:00
Due to node issue using exit code 0 for exceptions thrown in async methods. Fixed by moving getUserArguments inside try block.
81 lines
2.2 KiB
TypeScript
81 lines
2.2 KiB
TypeScript
import * as core from '@actions/core';
|
|
import * as exec from '@actions/exec';
|
|
import fs from 'fs';
|
|
import { promisify } from 'util';
|
|
import { IActionArguments } from './types';
|
|
|
|
const writeFileAsync = promisify(fs.writeFile);
|
|
const errorDeploying = "⚠️ Error deploying";
|
|
|
|
async function run() {
|
|
try {
|
|
const userArguments = getUserArguments();
|
|
|
|
await configureHost(userArguments);
|
|
await syncFiles(userArguments);
|
|
|
|
console.log("✅ Deploy Complete");
|
|
}
|
|
catch (error) {
|
|
console.error(errorDeploying);
|
|
core.setFailed(error.message);
|
|
}
|
|
}
|
|
|
|
run();
|
|
|
|
async function configureHost(args: IActionArguments): Promise<void> {
|
|
if (args.knownHosts === "") {
|
|
return;
|
|
}
|
|
|
|
try {
|
|
const sshFolder = `${process.env['HOME']}/.ssh`;
|
|
|
|
await exec.exec(`mkdir -v -p ${sshFolder}`);
|
|
await exec.exec(`chmod 700 ${sshFolder}`);
|
|
writeFileAsync(`${sshFolder}/known_hosts`, args.knownHosts);
|
|
await exec.exec(`chmod 755 ${sshFolder}/known_hosts`);
|
|
|
|
console.log("✅ Configured known_hosts");
|
|
}
|
|
catch (error) {
|
|
console.error("⚠️ Error configuring known_hosts");
|
|
core.setFailed(error.message);
|
|
}
|
|
}
|
|
|
|
function getUserArguments(): IActionArguments {
|
|
return {
|
|
ftp_server: core.getInput("ftp-server", { required: true }),
|
|
ftp_username: core.getInput("ftp-username", { required: true }),
|
|
ftp_password: core.getInput("ftp-password", { required: true }),
|
|
local_dir: withDefault(core.getInput("local-dir"), "./"),
|
|
gitFtpArgs: withDefault(core.getInput("git-ftp-args"), ""),
|
|
knownHosts: withDefault(core.getInput("known-hosts"), "")
|
|
};
|
|
}
|
|
|
|
function withDefault(value: string, defaultValue: string) {
|
|
if (value === "" || value === null || value === undefined) {
|
|
return defaultValue;
|
|
}
|
|
|
|
return value;
|
|
}
|
|
|
|
/**
|
|
* Sync changed files
|
|
*/
|
|
async function syncFiles(args: IActionArguments) {
|
|
try {
|
|
await core.group("Uploading files", async () => {
|
|
return await exec.exec(`git ftp push --force --auto-init --verbose --syncroot ${args.local_dir} --user ${args.ftp_username} --passwd ${args.ftp_password} ${args.gitFtpArgs} ${args.ftp_server}`);
|
|
});
|
|
}
|
|
catch (error) {
|
|
console.error("⚠️ Failed to upload files");
|
|
core.setFailed(error.message);
|
|
}
|
|
}
|