aboutsummaryrefslogtreecommitdiff
path: root/cmd/containerbuild/main.go
diff options
context:
space:
mode:
authorXe Iaso <me@xeiaso.net>2025-03-29 15:00:22 -0400
committerGitHub <noreply@github.com>2025-03-29 15:00:22 -0400
commit52ca5390c2b54374e62cbcd2efaf78edaa4e7249 (patch)
treee40c639e99e501bdb91acdc1750d7d16e36cc655 /cmd/containerbuild/main.go
parent6b2ae30baef6cdc1796a5ec5495c11686aaca50e (diff)
downloadanubis-52ca5390c2b54374e62cbcd2efaf78edaa4e7249.tar.xz
anubis-52ca5390c2b54374e62cbcd2efaf78edaa4e7249.zip
Add staticheck to CI (#152)
* Add staticheck to CI Signed-off-by: Xe Iaso <me@xeiaso.net> * fix staticcheck warnings Signed-off-by: Xe Iaso <me@xeiaso.net> * oh, right, playwright is broken Signed-off-by: Xe Iaso <me@xeiaso.net> --------- Signed-off-by: Xe Iaso <me@xeiaso.net>
Diffstat (limited to 'cmd/containerbuild/main.go')
-rw-r--r--cmd/containerbuild/main.go6
1 files changed, 0 insertions, 6 deletions
diff --git a/cmd/containerbuild/main.go b/cmd/containerbuild/main.go
index 95194c6..18e879c 100644
--- a/cmd/containerbuild/main.go
+++ b/cmd/containerbuild/main.go
@@ -19,7 +19,6 @@ var (
dockerLabels = flag.String("docker-labels", os.Getenv("DOCKER_METADATA_OUTPUT_LABELS"), "Docker image labels")
dockerRepo = flag.String("docker-repo", "registry.int.xeserv.us/techaro/anubis", "Docker image repository for Anubis")
dockerTags = flag.String("docker-tags", os.Getenv("DOCKER_METADATA_OUTPUT_TAGS"), "newline separated docker tags including the registry name")
- githubActor = flag.String("github-actor", "", "GitHub actor")
githubEventName = flag.String("github-event-name", "", "GitHub event name")
pullRequestID = flag.Int("pull-request-id", -1, "GitHub pull request ID")
slogLevel = flag.String("slog-level", "INFO", "logging level (see https://pkg.go.dev/log/slog#hdr-Levels)")
@@ -113,11 +112,6 @@ type image struct {
tag string
}
-func newlineSep2Comma(inp string) string {
- lines := strings.Split(inp, "\n")
- return strings.Join(lines, ",")
-}
-
func parseImageList(imageList string) ([]image, error) {
images := strings.Split(imageList, "\n")
var result []image