diff --git a/.github/workflows/build_nsis_bundle.yml b/.github/workflows/build_nsis_bundle.yml index 9bb4919c..205ad580 100644 --- a/.github/workflows/build_nsis_bundle.yml +++ b/.github/workflows/build_nsis_bundle.yml @@ -57,18 +57,20 @@ jobs: - name: Build binaries working-directory: freedata_server run: | - python3 -m nuitka \ - --remove-output \ - --assume-yes-for-downloads \ - --follow-imports \ - --include-data-dir=lib=lib \ - --include-data-dir=../freedata_gui/dist=gui \ - --include-data-files=lib/codec2/*=lib/codec2/ \ - --include-data-files=lib/hamlib/bin/*.exe=lib/hamlib/bin/ \ - --include-data-files=lib/hamlib/bin/*.dll=lib/hamlib/bin/ \ - --include-data-files=config.ini.example=config.ini \ - --standalone server.py \ + python3 -m nuitka ` + --remove-output ` + --assume-yes-for-downloads ` + --follow-imports ` + --include-data-dir=lib=lib ` + --include-data-dir=../freedata_gui/dist=gui ` + --include-data-files=lib/codec2/*=lib/codec2/ ` + --include-data-files=lib/hamlib/bin/*.exe=lib/hamlib/bin/ ` + --include-data-files=lib/hamlib/bin/*.dll=lib/hamlib/bin/ ` + --include-data-files=config.ini.example=config.ini ` + --standalone server.py ` --output-filename=freedata-server + shell: pwsh + - name: LIST ALL FILES run: ls -R