From c6de367eb80cdb5a7194d827f3819be5f8c28025 Mon Sep 17 00:00:00 2001 From: Kyle Harding Date: Mon, 22 Apr 2024 14:09:37 -0400 Subject: [PATCH] Fix extract path Signed-off-by: Kyle Harding --- action.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/action.yml b/action.yml index 8229ac6..2ba5164 100644 --- a/action.yml +++ b/action.yml @@ -42,7 +42,7 @@ runs: run: | set -x curl -fsSL "${REPO}/releases/download/${VERSION}/balena-cli-${VERSION}-linux-x64-standalone.zip" -o balena-cli.zip - unzip balena-cli.zip -d balena-cli + unzip balena-cli.zip -d . - name: Download balena CLI (Linux ARM64) if: runner.os == 'Linux' && runner.arch == 'ARM64' && ! steps.cache.outputs.cache-hit @@ -54,7 +54,7 @@ runs: run: | set -x curl -fsSL "${REPO}/releases/download/${VERSION}/balena-cli-${VERSION}-linux-arm64-standalone.zip" -o balena-cli.zip - unzip balena-cli.zip -d balena-cli + unzip balena-cli.zip -d . - name: Download balena CLI (Windows X64) if: runner.os == 'Windows' && runner.arch == 'x64' && ! steps.cache.outputs.cache-hit @@ -66,7 +66,7 @@ runs: run: | set -x curl -fsSL "${REPO}/releases/download/${VERSION}/balena-cli-${VERSION}-windows-x64-standalone.zip" -o balena-cli.zip - unzip balena-cli.zip -d balena-cli + unzip balena-cli.zip -d . - name: Download balena CLI (macOS X64) if: runner.os == 'macOS' && runner.arch == 'x64' && ! steps.cache.outputs.cache-hit @@ -78,7 +78,7 @@ runs: run: | set -x curl -fsSL "${REPO}/releases/download/${VERSION}/balena-cli-${VERSION}-macOS-x64-standalone.zip" -o balena-cli.zip - unzip balena-cli.zip -d balena-cli + unzip balena-cli.zip -d . - name: Download balena CLI (macOS ARM64) if: runner.os == 'macOS' && runner.arch == 'ARM64' && ! steps.cache.outputs.cache-hit @@ -90,7 +90,7 @@ runs: run: | set -x curl -fsSL "${REPO}/releases/download/${VERSION}/balena-cli-${VERSION}-macOS-arm64-standalone.zip" -o balena-cli.zip - unzip balena-cli.zip -d balena-cli + unzip balena-cli.zip -d . - name: Install balena CLI to tool cache uses: AnimMouse/tool-cache@v1