mirror of
https://github.com/Minionguyjpro/Inno-Setup-Action
synced 2026-02-18 17:41:18 +01:00
Update main.js
This commit is contained in:
22
src/main.js
22
src/main.js
@@ -12,33 +12,35 @@ const path = core.getInput('path')
|
|||||||
// Importing the child_process module for executing shell commands
|
// Importing the child_process module for executing shell commands
|
||||||
const exec = require('child_process').exec
|
const exec = require('child_process').exec
|
||||||
|
|
||||||
// Initializing an error variable
|
// Initializing error variables
|
||||||
let error;
|
let repoError;
|
||||||
|
let platformError;
|
||||||
|
|
||||||
// Checking if the platform is Windows
|
// Checking if the platform is Windows
|
||||||
if (process.platform === 'win32') {
|
if (process.platform === 'win32') {
|
||||||
// Checking if the GitHub workspace exists and is not empty
|
// Checking if the GitHub workspace exists and is not empty
|
||||||
if (fs.existsSync(process.env.GITHUB_WORKSPACE) && fs.readdirSync(workspacePath).length > 0) {
|
if (fs.existsSync(process.env.GITHUB_WORKSPACE) && fs.readdirSync(workspacePath).length > 0) {
|
||||||
// Building and executing the Inno Setup compiler command
|
// Building and executing the Inno Setup compiler command
|
||||||
exec(`"%PROGRAMFILES(X86)%\\Inno Setup 6\\iscc.exe" ${options} "${workspacePath}\\${path}"`, { stdio: 'ignore' }, function (error, stdout, stderr) {
|
exec(`"%PROGRAMFILES(X86)%\\Inno Setup 6\\iscc.exe" ${options} "${workspacePath}\\${path}"`, { stdio: 'ignore' }, function (execError, stdout, stderr) {
|
||||||
// Logging the standard output of the command
|
// Logging the standard output of the command
|
||||||
console.log(stdout)
|
console.log(stdout)
|
||||||
|
|
||||||
// Handling errors, if any
|
// Handling errors, if any
|
||||||
if (error) {
|
if (execError) {
|
||||||
core.setFailed(stderr)
|
repoError = { code: execError.code || 1 };
|
||||||
process.exit(error.code || 1)
|
core.setFailed(stderr);
|
||||||
|
process.exit(repoError.code);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
// Setting an error code and failing the workflow if the repository is not cloned
|
// Setting an error code and failing the workflow if the repository is not cloned
|
||||||
error = { code: 1 }
|
repoError = { code: 1 }
|
||||||
core.setFailed('The repository was not cloned. Please specify the actions/checkout action before this step.');
|
core.setFailed('The repository was not cloned. Please specify the actions/checkout action before this step.');
|
||||||
process.exit(error.code)
|
process.exit(repoError.code)
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// Setting an error code and failing the workflow if the platform is not Windows
|
// Setting an error code and failing the workflow if the platform is not Windows
|
||||||
error = { code: 1 };
|
platformError = { code: 1 };
|
||||||
core.setFailed('This action is only supported on Windows!')
|
core.setFailed('This action is only supported on Windows!')
|
||||||
process.exit(error.code)
|
process.exit(platformError.code)
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user