Skip to content

Commit 03a72c9

Browse files
feat: change poe commands (#295)
1 parent 8ff1eb8 commit 03a72c9

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build-cli.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
run: uv sync --frozen
6868

6969
- name: Build (Windows) via poe
70-
run: uv run poe nuitka
70+
run: uv run poe nuitka-windows
7171

7272
- name: Show build outputs
7373
run: |

.github/workflows/release-cli.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- os: windows-latest
2020
target: windows
2121
asset_name: chithi-cli-windows-amd64.exe
22-
build_cmd: nuitka
22+
build_cmd: nuitka-windows
2323

2424
runs-on: ${{ matrix.os }}
2525

src/cli/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ build = ["nuitka>=2.8.9", "zstandard>=0.25.0"]
2929
dev = ["poethepoet>=0.39.0"]
3030

3131
[tool.poe.tasks]
32-
nuitka = "nuitka --standalone --onefile --clang --lto=yes --python-flag=-m --python-flag=-OO --disable-bytecode-cache --assume-yes-for-downloads --windows-icon-from-ico=./assets/logo.ico ./app"
32+
nuitka-windows = "nuitka --standalone --onefile --clang --lto=yes --python-flag=-m --python-flag=-OO --disable-bytecode-cache --assume-yes-for-downloads ./app"
3333
nuitka-linux = "nuitka --standalone --onefile --clang --lto=yes --python-flag=-m --python-flag=-OO --disable-bytecode-cache --assume-yes-for-downloads ./app"
3434
nuitka-debug = "nuitka --standalone --onefile --clang --lto=yes --debug --python-flag=-m --python-flag=-OO --disable-bytecode-cache --assume-yes-for-downloads ./app"
3535

0 commit comments

Comments
 (0)