From 20738f1a9d450d136692ed63f89bd1da9ef95861 Mon Sep 17 00:00:00 2001 From: Ewy Date: Sun, 3 Mar 2024 02:14:58 +0100 Subject: [PATCH] feat: testing another new workflow --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 222cb94..6145c49 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -35,9 +35,9 @@ jobs: - name: Build with PyInstaller run: | pyinstaller --onefile --name counter_phisher --i assets/images/fish.ico counter_phisher.py - if [ ${{ matrix.os }} == 'windows-latest' ]; then - mv dist/counter_phisher.exe dist/counter_phisher_windows.exe - elif [ ${{ matrix.os }} == 'macos-latest' ]; then + if [[ "${{ matrix.os }}" == 'windows-latest' ]]; then + mv dist/counter_phisher dist/counter_phisher.exe + elif [[ "${{ matrix.os }}" == 'macos-latest' ]]; then mv dist/counter_phisher dist/counter_phisher_mac else mv dist/counter_phisher dist/counter_phisher_linux