Skip to content

Commit

Permalink
feat: testing another new workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
EwyBoy committed Mar 3, 2024
1 parent d57aaed commit 20738f1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 20738f1

Please sign in to comment.