From 920598cf20241a32f0328f597916a9432437b844 Mon Sep 17 00:00:00 2001 From: zachey <63107653+zachey01@users.noreply.github.com> Date: Wed, 23 Oct 2024 16:51:15 +0500 Subject: [PATCH] Update release.yml --- .github/workflows/release.yml | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ae7f6e4..283be01 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,19 +26,8 @@ jobs: pip install -r requirements.txt - name: Build with Nuitka - uses: Nuitka/Nuitka-Action@main - with: - main_file: main.py - output_dir: ./build - output_name: SmoothedScroll.exe - icon: ./assets/icon.ico - enable_plugin: tk-inter - jobs: 8 - standalone: true - onefile: true - remove_output: true - windows_disable_console: true - static_libpython: no + run: | + nuitka --onefile main.py --enable-plugin=tk-inter --jobs=8 --static-libpython=no --remove-output --standalone --windows-disable-console --windows-icon-from-ico=./assets/icon.ico --output-filename=SmoothedScroll - name: Configure Git run: |