ghr

Upload multiple artifacts to GitHub Release in parallel

brewmacoslinux
Try with needOr install directly
Source

About

Upload multiple artifacts to GitHub Release in parallel

Commands

ghr

Examples

Upload a single file to a GitHub release$ ghr -t $GITHUB_TOKEN -u username -r repo v1.0.0 /path/to/artifact.tar.gz
Upload all files from a directory to a release$ ghr -t $GITHUB_TOKEN -u username -r repo v1.0.0 ./dist/
Upload with custom release name and parallel workers$ ghr -t $GITHUB_TOKEN -u username -r repo -n 'Release v1.0.0' -p 4 v1.0.0 ./build/