Skip to content

Commit

Permalink
Fix working directory
Browse files Browse the repository at this point in the history
Signed-off-by: Kyle Harding <[email protected]>
  • Loading branch information
klutchell committed Apr 23, 2024
1 parent 3b0617d commit 2dfdd87
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,16 @@ 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
VERSION: ${{ steps.latest.outputs.release || inputs.version }}
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
Expand Down

0 comments on commit 2dfdd87

Please sign in to comment.