-
Notifications
You must be signed in to change notification settings - Fork 158
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GH-9: Fixed type errors. #10
Conversation
action.yml
Outdated
@@ -1,4 +1,4 @@ | |||
name: Upload S3 | |||
name: Upload S3 - Fix GH-9 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it is unnecessary '- Fix GH-9'
remove plz
index.js
Outdated
@@ -1,3 +1,4 @@ | |||
// @ts-check |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove too.
unnecessary
README.md
Outdated
| name | description | | ||
| ------------------ | --------------------------------------------------------------------------------------------- | | ||
| `object_key` | Uploaded object key generated by [shortid](https://github.com/dylang/shortid) in Bucket | | ||
| `object_locations` | The URLs of the uploaded objects as a JSON string. E.g: `["location/file1","location/file2"]` | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why use the array to string??
this is intended to control by pragmatically in other actions
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@kittaakos you're right.
must have to stringify Object.
but core was update this actions/toolkit#370
so could you update @actions/core?
@shallwefootball, sorry for the delay and messing up with the PRs. I opened a follow-up with a bare minimum changeset. Here is the follow-up: #17 |
message
of theError
object.fromjson
.object_locations
value.dist
.Closes #9
Signed-off-by: Akos Kitta [email protected]