cheton / github-release-cli

A command-line tool for managing release assets on a GitHub repository.
MIT License
72 stars 17 forks source link

Files not actually uploaded #21

Open zwhitchcox opened 4 years ago

zwhitchcox commented 4 years ago

I'm trying to upload to my release with the following code:

token=$(cat ${HOME}/.PAT)
github-release upload \
  --owner zwhitchcox \
  --repo cruster \
  --token ${token} \
  --tag "v0.0.1" \
  --name "Initial Release" \
  --body "My description"\
  --prerelease \
  cruster-0.1.0.AppImage

But the file simply isn't being uploaded. I seem to have followed the instructions. Any idea as to what's going wrong?