diff --git a/.gitignore b/.gitignore index 28ed554..05a13e0 100644 --- a/.gitignore +++ b/.gitignore @@ -2,6 +2,7 @@ node_modules/ # Editors .vscode +.vs/ # Logs logs diff --git a/dist/index.js b/dist/index.js index 779c2e0..1ca3f90 100644 --- a/dist/index.js +++ b/dist/index.js @@ -636,7 +636,7 @@ async function run() { const tempFile = Buffer.from(encodedString, 'base64'); if (tempFile.length == 0) - core.setFailed('Temporary file value is not set'); + core.setFailed('encodedString value is not set'); fse.outputFile(fileName, tempFile, (err) => { if (err) throw err; diff --git a/package.json b/package.json index 435925e..b7e03ba 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "base64-to-file", - "version": "1.2.2", + "version": "1.2.3", "description": "base64 encoded string to a file", "main": "index.js", "scripts": {