Skip to content

Commit d8e5a1f

Browse files
committed
Pushes to v1.0.2
Fixes result output
1 parent b4f5cc9 commit d8e5a1f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "action-simple-file-upload",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"author": "Zachary Cardoza",
55
"description": "GitHub Action that performs a simple file transfer using FTP",
66
"license": "MIT",

src/main.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ async function run (): Promise < void > {
1616
throw result
1717
}
1818

19-
core.debug(result.report.join('\n'))
19+
console.log(result)
20+
core.debug('Upload Successful')
2021
} catch (error) {
2122
console.log(error)
2223
core.setFailed(error.message)

0 commit comments

Comments
 (0)