Skip to content

Commit

Permalink
action: allow to configure image repo for CI installs
Browse files Browse the repository at this point in the history
Signed-off-by: Robin Gögge <[email protected]>
  • Loading branch information
rgo3 authored and tklauser committed Oct 31, 2024
1 parent 68d9ea8 commit 7ddf27b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7ddf27b

Please sign in to comment.