Skip to content

Commit

Permalink
fix: try to fix windows actions
Browse files Browse the repository at this point in the history
  • Loading branch information
K900 committed Aug 25, 2023
1 parent dfd1a9a commit 23120d6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
virtualenvs-create: false

- name: Install Python dependencies ⬇️
run: poetry install --no-interaction --no-root
run: C:\Users\runneradmin\.local\bin\poetry install --no-interaction --no-root

- name: Install JS dependencies ⬇️
working-directory: ./frontend
Expand All @@ -45,10 +45,10 @@ jobs:
run: pnpm run build

- name: Build Python Backend 🛠️
run: pyinstaller decky_loader.spec
run: C:\Users\runneradmin\.local\bin\poetry run pyinstaller decky_loader.spec

- name: Build Python Backend (noconsole) 🛠️
run: DECKY_NOCONSOLE=1 pyinstaller decky_loader.spec
run: $env:DECKY_NOCONSOLE = 1; C:\Users\runneradmin\.local\bin\poetry run pyinstaller decky_loader.spec

- name: Upload package artifact ⬆️
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 23120d6

Please sign in to comment.