diff options
| author | AAGaming <aagaming@riseup.net> | 2023-09-30 13:15:35 -0400 |
|---|---|---|
| committer | marios8543 <marios8543@gmail.com> | 2023-10-17 17:08:23 +0300 |
| commit | 949244e8e6b54921beeefab3524c2de63914f737 (patch) | |
| tree | 0393a4e17c2a47783d40c891a9ee09f7b78cc2ba /.github/workflows/build-win.yml | |
| parent | b7d4d57bc28449c33191a942c0bcffbe15226f04 (diff) | |
| download | decky-loader-949244e8e6b54921beeefab3524c2de63914f737.tar.gz decky-loader-949244e8e6b54921beeefab3524c2de63914f737.zip | |
fix paths
Diffstat (limited to '.github/workflows/build-win.yml')
| -rw-r--r-- | .github/workflows/build-win.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build-win.yml b/.github/workflows/build-win.yml index 53d1e964..1ce47d4a 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;/backend/static" --add-data "./backend/locales;/backend/locales" --add-data "./backend/src/legacy;/backend/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=sqlite3 ./backend/main.py - name: Build Python Backend (noconsole) 🛠️ - run: pyinstaller --noconfirm --noconsole --onefile --name "PluginLoader_noconsole" --add-data "./backend/static;/backend/static" --add-data "./backend/locales;/backend/locales" --add-data "./backend/src/legacy;/backend/src/legacy" --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 "./backend/src/legacy;/src/legacy" --add-data "./plugin;/plugin" --hidden-import=sqlite3 ./backend/main.py - name: Upload package artifact ⬆️ uses: actions/upload-artifact@v3 |
