From 508a0bf91af0a0df9db6ba34a7523e00ed0be7c3 Mon Sep 17 00:00:00 2001 From: DaanSelen Date: Mon, 30 Mar 2026 13:09:19 +0200 Subject: [PATCH] chore: separate the compilation and dependency install --- .gitea/workflows/cross-compile.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitea/workflows/cross-compile.yaml b/.gitea/workflows/cross-compile.yaml index 40a1772..8b6ca64 100644 --- a/.gitea/workflows/cross-compile.yaml +++ b/.gitea/workflows/cross-compile.yaml @@ -40,6 +40,10 @@ jobs: pip install -r ./requirements.txt pip install pyinstaller + - name: Compile the python binary + run: | + cd ./meshbook + pyinstaller \ --onefile \ --name meshbook \