summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormarios8543 <marios8543@gmail.com>2023-10-17 16:39:45 +0300
committermarios8543 <marios8543@gmail.com>2023-10-18 02:36:55 +0300
commit64867369f9ed3b525225552a7a9340e0cdadd8c0 (patch)
treedf6b70e4c9eab52d2ee71d58fd800dadc50cf025
parent315b2f9cda6def0c93bc7a0fa302415d2f972c85 (diff)
downloaddecky-loader-64867369f9ed3b525225552a7a9340e0cdadd8c0.tar.gz
decky-loader-64867369f9ed3b525225552a7a9340e0cdadd8c0.zip
Fix decky_plugin on windows CI
-rw-r--r--.github/workflows/build-win.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build-win.yml b/.github/workflows/build-win.yml
index b9be5934..c44c22fb 100644
--- a/.github/workflows/build-win.yml
+++ b/.github/workflows/build-win.yml
@@ -44,10 +44,10 @@ 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 "./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 "./plugin/*;/" --hidden-import=sqlite3 ./backend/main.py
- name: Build Python Backend (noconsole) 🛠️
- run: pyinstaller --noconfirm --noconsole --onefile --name "PluginLoader_noconsole" --add-data "./backend/static;/static" --add-data "./backend/locales;/locales" --add-data "./plugin;/plugin" --hidden-import=sqlite3 ./backend/main.py
+ run: pyinstaller --noconfirm --noconsole --onefile --name "PluginLoader_noconsole" --add-data "./backend/static;/static" --add-data "./backend/locales;/locales" --add-data "./plugin/*;/" --hidden-import=sqlite3 ./backend/main.py
- name: Upload package artifact ⬆️
uses: actions/upload-artifact@v3