summaryrefslogtreecommitdiff
path: root/.github/workflows/build.yml
diff options
context:
space:
mode:
authormarios8543 <marios8543@gmail.com>2023-10-31 17:04:48 +0200
committermarios8543 <marios8543@gmail.com>2023-10-31 17:04:48 +0200
commit44e6f03b0655a9f1e87530141ad907b9553744cc (patch)
treec675bb7228de8b37ea52906110abbed226ba89c6 /.github/workflows/build.yml
parentd00506d141eb940e6e6c0e2d2cf8b558070f8d7a (diff)
downloaddecky-loader-44e6f03b0655a9f1e87530141ad907b9553744cc.tar.gz
decky-loader-44e6f03b0655a9f1e87530141ad907b9553744cc.zip
Fix logging.handlers import and improve plugin modulesv2.10.8-pre1
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r--.github/workflows/build.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 2d617db3..dfc97e3a 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -87,7 +87,7 @@ jobs:
run: pnpm run build
- name: Build Python Backend 🛠️
- run: pyinstaller --noconfirm --onefile --name "PluginLoader" --add-data ./backend/static:/static --add-data ./backend/locales:/locales --add-data ./backend/src/legacy:/src/legacy --add-data ./plugin:/plugin --hidden-import=sqlite3 ./backend/main.py
+ run: pyinstaller --noconfirm --onefile --name "PluginLoader" --add-data ./backend/static:/static --add-data ./backend/locales:/locales --add-data ./backend/src/legacy:/src/legacy --add-data ./plugin:/plugin --hidden-import=logging.handlers --hidden-import=sqlite3 ./backend/main.py
- name: Upload package artifact ⬆️
if: ${{ !env.ACT }}