Skip to content

Commit

Permalink
Finalizing deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
boldar99 committed Nov 24, 2023
1 parent 6e2e6bb commit 4376935
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,14 @@ jobs:
pip install .
- name: Build ZXLive
run: pyside6-deploy -v -f -c pysidedeploy.spec --keep-deployment-files
- name: Rename files, fix deployment file location
- name: Rename files, fix deployment file location - Windows
if: matrix.os == 'windows-latest'
run: mv build/__main__.exe ./zxlive_windows.exe
- name: Rename files, fix deployment file location - Linux, MacOS
if: matrix.os != 'windows-latest'
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
mv build/__main__.bin ./zxlive_linux.bin
elif [ "$RUNNER_OS" == "Windows" ]; then
mv build/__main__.bin ./zxlive_windows.exe
elif [ "$RUNNER_OS" == "macOS" ]; then
mv zxlive/deployment/__main__.app/Contents/MacOS/__main__ ./zxlive_macos.command
fi
Expand Down

0 comments on commit 4376935

Please sign in to comment.