summaryrefslogtreecommitdiff
path: root/.github/workflows/build.yml
diff options
context:
space:
mode:
authorAAGaming <aa@mail.catvibers.me>2022-10-14 23:22:01 -0400
committerAAGaming <aa@mail.catvibers.me>2022-10-14 23:22:01 -0400
commit9233ee58c6110df0d5e9dbe025d8c03a558aa4eb (patch)
tree2baba2ede8e363bb669c00078eb361795c7038f2 /.github/workflows/build.yml
parentfd59456f8bca89299b0da4dc820cbc2d55ead65b (diff)
downloaddecky-loader-9233ee58c6110df0d5e9dbe025d8c03a558aa4eb.tar.gz
decky-loader-9233ee58c6110df0d5e9dbe025d8c03a558aa4eb.zip
fix ci
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r--.github/workflows/build.yml15
1 files changed, 5 insertions, 10 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index e9da38d5..9ccf9798 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -46,9 +46,6 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 18
-
- - name: Set up PNPM 💎
- uses: pnpm/action-setup@v2.2.3
- name: Set up Python 3.10 🐍
uses: actions/setup-python@v3
@@ -61,15 +58,13 @@ jobs:
pip install pyinstaller
[ -f requirements.txt ] && pip install -r requirements.txt
- - name: Install NodeJS dependencies ⬇️
- run: |
- cd frontend
- pnpm ci
+ - name: Install JS dependencies ⬇️
+ working-directory: ./frontend
+ uses: pnpm/action-setup@v2.2.3
- name: Build JS Frontend 🛠️
- run: |
- cd frontend
- pnpm run build
+ working-directory: ./frontend
+ 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