From 626278ec50f1a79e133182eac6238d0457bc137e Mon Sep 17 00:00:00 2001 From: Darren Shepherd Date: Mon, 15 Jan 2024 11:52:30 -0700 Subject: [PATCH] Missing file reference in goreleaser Signed-off-by: Darren Shepherd --- .goreleaser.yml | 1 + pkg/cli/local_server.go | 1 + 2 files changed, 2 insertions(+) diff --git a/.goreleaser.yml b/.goreleaser.yml index 21a37ff80..4faaed7ac 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -151,6 +151,7 @@ dockers: - scripts/setup-binfmt - scripts/acorn-busybox-init - scripts/40-copy-resolv-nameserver.sh + - scripts/k3s-config.yaml docker_manifests: - use: docker diff --git a/pkg/cli/local_server.go b/pkg/cli/local_server.go index 180add4ca..f8fabe19b 100644 --- a/pkg/cli/local_server.go +++ b/pkg/cli/local_server.go @@ -10,6 +10,7 @@ func NewLocalServer(c CommandContext) *cobra.Command { cmd := cli.Command(&Server{}, cobra.Command{ SilenceUsage: true, Short: "Run local development server", + Hidden: true, }) return cmd }