From 597a471949206a1d9006a8280c116ae698dda99f Mon Sep 17 00:00:00 2001 From: Yannik Schmidt Date: Thu, 17 Apr 2025 11:53:24 +0200 Subject: [PATCH] fix: build unpackaged exe because of windwos defender --- .github/workflows/release.yaml | 2 +- dist/{ => client}/run.bat | 0 dist/{ => client}/run.ps1 | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename dist/{ => client}/run.bat (100%) rename dist/{ => client}/run.ps1 (100%) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 21b50f0..ab033ee 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -25,7 +25,7 @@ jobs: pip install -r requirements.txt - name: Build EXE - run: pyinstaller -F client.py + run: pyinstaller client.py - name: Archive EXE run: Compress-Archive -Path dist\ -DestinationPath release.zip diff --git a/dist/run.bat b/dist/client/run.bat similarity index 100% rename from dist/run.bat rename to dist/client/run.bat diff --git a/dist/run.ps1 b/dist/client/run.ps1 similarity index 100% rename from dist/run.ps1 rename to dist/client/run.ps1