From 222d573a1895971b15d0fd72438795acb0ad8f0d Mon Sep 17 00:00:00 2001 From: Sheng Fan <41846047+fred913@users.noreply.github.com> Date: Tue, 27 Aug 2024 02:24:09 +0800 Subject: [PATCH] ci: try manually building via mutual --- .github/workflows/build.yml | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bdc54fc..c05dc23 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -38,11 +38,10 @@ jobs: cache: 'pip' # Build python script into a stand-alone exe - - uses: Nuitka/Nuitka-Action@main - with: - script-name: FluentPython - onefile: true - disable-console: true + - runs: | + pip install pipenv + pipenv update -d + pipenv run nuitka --standalone --plugin-enable=pyside6 FluentPython # Uploads artifact - name: Upload Artifacts @@ -50,7 +49,5 @@ jobs: with: name: ${{ runner.os }} ${{ runner.arch }} Build path: | - build/*.exe - build/*.bin - build/*.app/**/* + dist/* \ No newline at end of file