From ab6b0808224c2cef8451bef31e92d505680ee5d6 Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Thu, 6 Jul 2023 09:57:30 +0200 Subject: [PATCH] Fix executable suffix typo in build workflow Signed-off-by: Natanael Copa (cherry picked from commit 3792734181af6de7f4762dfe0f365ad6f3f3b9e1) --- .github/workflows/build-k0s.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/build-k0s.yml b/.github/workflows/build-k0s.yml index b4b183ba104e..a1020f27355d 100644 --- a/.github/workflows/build-k0s.yml +++ b/.github/workflows/build-k0s.yml @@ -34,7 +34,7 @@ jobs: .github/workflows/prepare-build-env.sh executableSuffix='' - if [ "TARGET_OS" = windows ]; then + if [ "$TARGET_OS" = windows ]; then executableSuffix=.exe fi echo executable-suffix="$executableSuffix" >>"$GITHUB_OUTPUT" @@ -78,7 +78,6 @@ jobs: name: k0s-${{ inputs.target-os }}-${{ inputs.target-arch }} path: | k0s${{ steps.build-prepare.outputs.executable-suffix }} - k0s${{ steps.build-prepare.outputs.executable-suffix }}[.]exe - name: "Build :: Airgap image list" if: inputs.target-os != 'windows'