We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f50b750 commit ca9e30bCopy full SHA for ca9e30b
.gitignore
@@ -2,6 +2,7 @@ node_modules/
2
3
# Editors
4
.vscode
5
+.vs/
6
7
# Logs
8
logs
dist/index.js
@@ -636,7 +636,7 @@ async function run() {
636
const tempFile = Buffer.from(encodedString, 'base64');
637
638
if (tempFile.length == 0)
639
- core.setFailed('Temporary file value is not set');
+ core.setFailed('encodedString value is not set');
640
641
fse.outputFile(fileName, tempFile, (err) => {
642
if (err) throw err;
package.json
@@ -1,6 +1,6 @@
1
{
"name": "base64-to-file",
- "version": "1.2.2",
+ "version": "1.2.3",
"description": "base64 encoded string to a file",
"main": "index.js",
"scripts": {
0 commit comments