Skip to content

Commit

Permalink
Use poetry to run playwright install
Browse files Browse the repository at this point in the history
  • Loading branch information
jordantgh committed Oct 4, 2023
1 parent 1ac9687 commit 9dea9f7
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,17 @@ jobs:
- name: Install Chrome for Playwright (Linux)
if: runner.os == 'Linux'
env:
PLAYWRIGHT_BROWSERS_PATH: 0
run: |
export PLAYWRIGHT_BROWSERS_PATH=0
playwright install chrome
poetry run playwright install chrome
- name: Install Chrome for Playwright (Windows)
if: runner.os == 'Windows'
env:
PLAYWRIGHT_BROWSERS_PATH: 0
run: |
$env:PLAYWRIGHT_BROWSERS_PATH="0"
playwright install chrome
poetry run playwright install chrome
# Build PyQt5 app binary with PyInstaller
- name: Build with PyInstaller
Expand Down

0 comments on commit 9dea9f7

Please sign in to comment.