From afabae7dc98e3657d159fb6b39be2c959b2a27e2 Mon Sep 17 00:00:00 2001 From: konsthol Date: Sun, 2 Nov 2025 20:53:41 +0200 Subject: [PATCH] this is how we generate our shit. --- .gitea/workflows/release.yaml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml index fb09e31..716d9b0 100644 --- a/.gitea/workflows/release.yaml +++ b/.gitea/workflows/release.yaml @@ -60,10 +60,12 @@ jobs: COPY requirements.txt /app/requirements.txt COPY app /app/app ENV PIP_ROOT_USER_ACTION=ignore - RUN apt-get update && apt-get install -y --no-install-recommends binutils - RUN pip install -r /app/requirements.txt - RUN cd /app/app && pyinstaller --onefile --add-data "ui:ui" wolServer.py - EOF + RUN apt-get update && apt-get install -y --no-install-recommends \ + binutils \ + && pip install -r /app/requirements.txt \ + && cd /app/app \ + && pyinstaller --onefile --add-data "ui:ui" wolServer.py + EOF - name: Create Dist Directory run: mkdir -p app/dist