From 2dfdd877aad82624d7a1fc818308f3ceb99bc52b Mon Sep 17 00:00:00 2001 From: Kyle Harding Date: Tue, 23 Apr 2024 09:44:00 -0400 Subject: [PATCH] Fix working directory Signed-off-by: Kyle Harding --- action.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index e1da6c0..79c3ca1 100644 --- a/action.yml +++ b/action.yml @@ -61,7 +61,7 @@ runs: - name: Download skopeo if: steps.cache.outputs.cache-hit != true - working-directory: ${{ runner.temp }}/skopeo + working-directory: ${{ runner.temp }} shell: bash --noprofile --norc -eo pipefail -x {0} env: REPO: lework/skopeo-binary @@ -69,6 +69,8 @@ runs: OS: ${{ steps.os.outputs.target }} ARCH: ${{ steps.arch.outputs.target }} run: | + mkdir -p skopeo + cd skopeo curl -fsSL "https://github.com/${REPO}/releases/download/${VERSION}/skopeo-${OS}-${ARCH}" -o skopeo chmod +x skopeo