summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorPhilipp Richter <richterphilipp.pops@gmail.com>2023-02-19 22:42:55 +0000
committerGitHub <noreply@github.com>2023-02-19 14:42:55 -0800
commitf1e679c3fb26bf2a3264ef63b4b207412417521e (patch)
tree57874cf585a31d2a0be69fa9dd439162891f954f /.github
parente1b138bcbdcb899e43166a9ece5173d0fc0cab0a (diff)
downloaddecky-loader-f1e679c3fb26bf2a3264ef63b4b207412417521e.tar.gz
decky-loader-f1e679c3fb26bf2a3264ef63b4b207412417521e.zip
Expose a 'decky_plugin' module to decky plugins (#353)
* Expose a 'decky_plugin' module to decky plugins * expose decky user home path * support 'py_modules' python modules in plugins * allow for a '_migration' method in plugins to have an explicit file moving step * Expose the plugin python module as .pyi stub interface * Expose system and user python paths to plugins
Diffstat (limited to '.github')
-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 cb72821a..8b8975a7 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -69,7 +69,7 @@ jobs:
run: pnpm run build
- name: Build Python Backend 🛠️
- run: pyinstaller --noconfirm --onefile --name "PluginLoader" --add-data ./backend/static:/static --add-data ./backend/legacy:/legacy ./backend/*.py
+ run: pyinstaller --noconfirm --onefile --name "PluginLoader" --add-data ./backend/static:/static --add-data ./backend/legacy:/legacy --add-data ./plugin:/plugin ./backend/*.py
- name: Upload package artifact ⬆️
if: ${{ !env.ACT }}