From 507847e2ae708e21afc2a4255c0f56e72332d87c Mon Sep 17 00:00:00 2001 From: Lorenz Bauer Date: Thu, 25 Jan 2024 11:22:29 +0000 Subject: [PATCH] action: fix incorrect -d flag lvh images pull doesn't understand -d. The correct flag is --dir. Signed-off-by: Lorenz Bauer --- action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yaml b/action.yaml index b9213b4e..4d8c53d5 100644 --- a/action.yaml +++ b/action.yaml @@ -162,7 +162,7 @@ runs: if: ${{ inputs.provision == 'true' && steps.cache-lvh-image.outputs.cache-hit != 'true' }} shell: bash run: | - /bin/lvh images pull --cache quay.io/lvh-images/${{ inputs.image }}:${{ inputs.image-version }} -d "/" + /bin/lvh images pull --cache quay.io/lvh-images/${{ inputs.image }}:${{ inputs.image-version }} --dir "/" - name: Start VM if: ${{ inputs.provision == 'true' }}