From e80405377789c2570b2b2c9e78f78e250c96fdd6 Mon Sep 17 00:00:00 2001 From: Yuki Osaki Date: Fri, 25 Jun 2021 14:32:45 +0900 Subject: [PATCH] change unit 32 to unit 64 --- pkg/cmd/run/shared/artifacts.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/run/shared/artifacts.go b/pkg/cmd/run/shared/artifacts.go index 62344354a..ff3490719 100644 --- a/pkg/cmd/run/shared/artifacts.go +++ b/pkg/cmd/run/shared/artifacts.go @@ -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"` }