mirror of
https://github.com/easingthemes/ssh-deploy.git
synced 2025-04-29 11:20:42 -04:00
11 lines
395 B
JavaScript
11 lines
395 B
JavaScript
const inputNames = ['REMOTE_HOST', 'REMOTE_USER', 'REMOTE_PORT', 'SSH_PRIVATE_KEY', 'DEPLOY_KEY_NAME', 'SOURCE', 'TARGET', 'ARGS', 'EXCLUDE'];
|
|
|
|
const inputs = {
|
|
GITHUB_WORKSPACE: process.env.GITHUB_WORKSPACE
|
|
};
|
|
// Get inputs from ENV or WITH workflow settings
|
|
inputNames.forEach((input) => {
|
|
inputs[input] = process.env[input] || process.env[`INPUT_${input}`];
|
|
});
|
|
|
|
module.exports = inputs;
|