From 9ff3eb6ce3df4f9f4e827917f6ea2e7a77b61dc7 Mon Sep 17 00:00:00 2001 From: Travis V Date: Mon, 16 Dec 2024 19:56:18 -0500 Subject: [PATCH] come on --- .github/workflows/build.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 93d5c0c..3496be7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -38,12 +38,13 @@ jobs: # Rename binaries for platform-specific names - name: Rename binaries for upload + shell: bash # Use Bash explicitly run: | - if [[ "${{ matrix.os }}" == "macos-latest" ]]; then + if [ "${{ matrix.os }}" = "macos-latest" ]; then mv dist/gptree dist/gptree-macos - elif [[ "${{ matrix.os }}" == "ubuntu-latest" ]]; then + elif [ "${{ matrix.os }}" = "ubuntu-latest" ]; then mv dist/gptree dist/gptree-ubuntu - elif [[ "${{ matrix.os }}" == "windows-latest" ]]; then + elif [ "${{ matrix.os }}" = "windows-latest" ]; then mv dist/gptree.exe dist/gptree-windows.exe fi