From 9e30d6bd1ea9600857ecbec2549f4b5cb02ad34e Mon Sep 17 00:00:00 2001 From: Minionguyjpro Date: Thu, 11 Jan 2024 17:31:28 +0100 Subject: [PATCH] Delete src/main.js --- src/main.js | 55 ----------------------------------------------------- 1 file changed, 55 deletions(-) delete mode 100644 src/main.js diff --git a/src/main.js b/src/main.js deleted file mode 100644 index 6db5eea..0000000 --- a/src/main.js +++ /dev/null @@ -1,55 +0,0 @@ -// Importing necessary modules -const core = require("@actions/core"); -const fs = require("fs"); - -// Getting the path to the workspace from environment variables -const workspacePath = process.env.GITHUB_WORKSPACE; - -// Getting inputs from the workflow -const options = core.getInput("options"); -const path = core.getInput("path"); - -// Importing the child_process module for executing shell commands -const exec = require("child_process").exec; - -// Initializing error variables -let repoError; -let platformError; - -// Checking if the platform is Windows -if (process.platform === "win32") { - // Checking if the GitHub workspace exists and is not empty - if ( - fs.existsSync(process.env.GITHUB_WORKSPACE) && - fs.readdirSync(workspacePath).length > 0 - ) { - // Building and executing the Inno Setup compiler command - exec( - `"%PROGRAMFILES(X86)%\\Inno Setup 6\\iscc.exe" ${options} "${workspacePath}\\${path}"`, - { stdio: "ignore" }, - function (execError, stdout, stderr) { - // Logging the standard output of the command - console.log(stdout); - - // Handling errors, if any - if (execError) { - repoError = { code: execError.code || 1 }; - core.setFailed(stderr); - process.exit(repoError.code); - } - }, - ); - } else { - // Setting an error code and failing the workflow if the repository is not cloned - repoError = { code: 1 }; - core.setFailed( - "The repository was not cloned. Please specify the actions/checkout action before this step.", - ); - process.exit(repoError.code); - } -} else { - // Setting an error code and failing the workflow if the platform is not Windows - platformError = { code: 1 }; - core.setFailed("This action is only supported on Windows!"); - process.exit(platformError.code); -}