mirror of
https://gitea.com/gitea/tea.git
synced 2024-11-22 02:21:36 +01:00
4c0cef090d
Add release asset management. This includes a series of subcommands under `tea release assets`: - `tea release assets create <release-tag> <asset> [<asset>...]`: Upload one or more release attachments - `tea release assets delete <release tag> <attachment name> [<attachment name>...]`: Delete one or more release attachments - `tea release assets list <release tag>`: List Release Attachments Co-authored-by: Dane Bouchie <dbouchie@iradimed.com> Reviewed-on: https://gitea.com/gitea/tea/pulls/619 Co-authored-by: danebou <danebou@noreply.gitea.com> Co-committed-by: danebou <danebou@noreply.gitea.com>
26 lines
469 B
Go
26 lines
469 B
Go
// Copyright 2024 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package print
|
|
|
|
import (
|
|
"code.gitea.io/sdk/gitea"
|
|
)
|
|
|
|
// ReleaseAttachmentsList prints a listing of release attachments
|
|
func ReleaseAttachmentsList(attachments []*gitea.Attachment, output string) {
|
|
t := tableWithHeader(
|
|
"Name",
|
|
"Size",
|
|
)
|
|
|
|
for _, attachment := range attachments {
|
|
t.addRow(
|
|
attachment.Name,
|
|
formatSize(attachment.Size),
|
|
)
|
|
}
|
|
|
|
t.print(output)
|
|
}
|