From b003e2a58b6e416693ff543dcc61cb2ba6ac4ff2 Mon Sep 17 00:00:00 2001 From: Skydust Date: Sat, 7 Dec 2024 16:02:06 +0100 Subject: [PATCH] Passing through the kube config --- action.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/action.yml b/action.yml index 269c6a6..415b1ec 100644 --- a/action.yml +++ b/action.yml @@ -7,7 +7,13 @@ inputs: deploymentName: description: The deployment name required: true + b64KubeConf: + description: The configuration in base64 + required: false + default: "${{ secrets.KUBERNETES_BASE64_CONF }}" runs: using: docker image: Dockerfile + env: + KUBERNETES_BASE64_CONF: "${{ secrets.KUBERNETES_BASE64_CONF }}"