diff --git a/.github/workflows/build-pr.yml b/.github/workflows/build-pr.yml index cbef037..f664c2e 100644 --- a/.github/workflows/build-pr.yml +++ b/.github/workflows/build-pr.yml @@ -127,15 +127,16 @@ jobs: - name: Build pypvz with Nuitka run: | - yes | python -m nuitka --standalone \ + yes | python -m nuitka \ --show-progress \ + --follow-imports \ --show-memory \ --output-dir=out \ --linux-onefile-icon=pypvz.ico \ - --include-data-dir=resources=resources \ -o ./out/pypvz \ --remove-output \ main.py + cp ./resources ./out/resources tar -cvpaf -C ./out out pypvz-with-python${{ matrix.python_version }}-nuitka-linux-x64.tar.zst - name: Release the version built by nuitka diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3cb3510..4d9cb58 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -129,15 +129,16 @@ jobs: - name: Build pypvz with Nuitka run: | - yes | python -m nuitka --standalone \ + yes | python -m nuitka \ --show-progress \ + --follow-imports \ --show-memory \ --output-dir=out \ --linux-onefile-icon=pypvz.ico \ - --include-data-dir=resources=resources \ -o ./out/pypvz \ --remove-output \ main.py + cp ./resources ./out/resources tar -cvpaf -C ./out out pypvz-with-python${{ matrix.python_version }}-nuitka-linux-x64.tar.zst - name: Release the version built by nuitka