From 554d1538d9043c05dd6109c0b289a804f92486f5 Mon Sep 17 00:00:00 2001 From: Nuckal777 Date: Mon, 2 Dec 2024 21:02:51 +0100 Subject: [PATCH] Fix ScriptLocation --- .github/workflows/publish-docker.yml | 1 + pkg/gardenlinux/constants.go | 3 +++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/publish-docker.yml b/.github/workflows/publish-docker.yml index b3961943..36c5eca0 100644 --- a/.github/workflows/publish-docker.yml +++ b/.github/workflows/publish-docker.yml @@ -7,6 +7,7 @@ on: push: branches: - inplace-updates + - inplace-updates-rebased tags: - v* paths-ignore: diff --git a/pkg/gardenlinux/constants.go b/pkg/gardenlinux/constants.go index 1a1703fc..28d4aa18 100644 --- a/pkg/gardenlinux/constants.go +++ b/pkg/gardenlinux/constants.go @@ -16,6 +16,9 @@ var ( ) const ( + // ScriptLocation is the location that Gardener configuration scripts end up on Garden Linux + ScriptLocation = "/opt/gardener/bin" + // OSTypeGardenLinux is a constant for the Garden Linux extension OS type. OSTypeGardenLinux = "gardenlinux" )