Skip to content

Commit 8bf203f

Browse files
authored
try installing package before building (#340)
1 parent a21cc06 commit 8bf203f

1 file changed

Lines changed: 9 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,9 @@ jobs:
2121
python -m pip install --upgrade pip setuptools wheel
2222
pip install poetry poetry-pyinstaller-plugin pyinstaller
2323
- name: Build binaries
24-
run: poetry build
24+
run: |
25+
pip install .
26+
poetry build
2527
2628
- uses: actions/upload-artifact@v4
2729
with:
@@ -46,7 +48,9 @@ jobs:
4648
python -m pip install --upgrade pip setuptools wheel
4749
pip install poetry poetry-pyinstaller-plugin pyinstaller
4850
- name: Build binaries
49-
run: poetry build
51+
run: |
52+
pip install .
53+
poetry build
5054
5155
- uses: actions/upload-artifact@v4
5256
with:
@@ -72,7 +76,9 @@ jobs:
7276
python -m pip install --upgrade pip setuptools wheel
7377
pip install poetry poetry-pyinstaller-plugin pyinstaller
7478
- name: Build binaries
75-
run: poetry build
79+
run: |
80+
pip install .
81+
poetry build
7682
7783
- uses: actions/upload-artifact@v4
7884
with:

0 commit comments

Comments
 (0)