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:
commit
c3e6fccabe
1 changed files with 1 additions and 1 deletions
|
|
@ -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"`
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue