From 7ddf27bdd2d74d87283c842a9fdc9da415ca609a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robin=20G=C3=B6gge?= Date: Wed, 30 Oct 2024 23:18:45 +0100 Subject: [PATCH] action: allow to configure image repo for CI installs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Robin Gögge --- action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yaml b/action.yaml index 2bd84ffc25..2edc14ff5a 100644 --- a/action.yaml +++ b/action.yaml @@ -93,7 +93,7 @@ runs: if: ${{ steps.build-cli.outputs.path == '' && inputs.ci-version != '' }} shell: bash run: | - cid=$(docker create quay.io/cilium/cilium-cli-ci:${{ inputs.ci-version }} ls) + cid=$(docker create ${{ inputs.image-repo }}:${{ inputs.ci-version }} ls) docker cp $cid:/usr/local/bin/cilium ${{ inputs.binary-dir }}/${{ inputs.binary-name }} docker rm $cid