Basic usage question: action fails with Input required and not supplied: upload_url #232
-
Hi, I'm pretty new to GitHub actions so a little guidance would be appreciated. My workflow yml (linked where I'm using your action): As can be seen in the action log the artifacts are there, but the action fails with following output: Also, why does it fail finding the artifacts although they seem to be present. Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
This isn't coming from the
The error is indicated that the glob you are providing isn't matching any files within the working directly. It might be that they are named differently then you think, or they are in some sub-directly, not within your working directory. To solve issues like this, I usually throw in a shell script step and drop a few |
Beta Was this translation helpful? Give feedback.
This isn't coming from the
release_action
. This is coming from yourUpload Linux Asset
step, which uses an entirely different action. It looks like it's trying to reference the output ofcreate_release
, which you've commented out.The error is indicated that the glob you are providing isn't matching any files within the working directly. It might be that they are named differently then you think, or they are in some sub-directly, not within your working directory. To solve issues like this, I usually throw in a shell script step and drop a few
ls
command to see wh…