Merge pull request #3890 from Yuuki77/fix-artifact-download

Fix `gh run download fails on large artifacts due to uint32 limitation`
This commit is contained in:
Sam 2021-06-25 09:32:11 -07:00 committed by GitHub
commit c3e6fccabe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,7 +12,7 @@ import (
type Artifact struct {
Name string `json:"name"`
Size uint32 `json:"size_in_bytes"`
Size uint64 `json:"size_in_bytes"`
DownloadURL string `json:"archive_download_url"`
Expired bool `json:"expired"`
}