Skip to content

Commit c3e6fcc

Browse files
authored
Merge pull request cli#3890 from Yuuki77/fix-artifact-download
Fix `gh run download fails on large artifacts due to uint32 limitation`
2 parents 640a089 + e804053 commit c3e6fcc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/cmd/run/shared/artifacts.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212

1313
type Artifact struct {
1414
Name string `json:"name"`
15-
Size uint32 `json:"size_in_bytes"`
15+
Size uint64 `json:"size_in_bytes"`
1616
DownloadURL string `json:"archive_download_url"`
1717
Expired bool `json:"expired"`
1818
}

0 commit comments

Comments
 (0)