Skip to content

Commit bcdd890

Browse files
committed
build: fix pypi publish
1 parent 3929179 commit bcdd890

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/release-please.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ jobs:
2424

2525
upload-pypi:
2626
name: Upload to pypi
27-
needs: [release-please]
28-
if: ${{ needs.release-please.outputs.release_created == 'true' }}
27+
# needs: [release-please]
28+
# if: ${{ needs.release-please.outputs.release_created == 'true' }}
2929
runs-on: ubuntu-latest
3030
environment:
3131
name: pypi
@@ -51,6 +51,10 @@ jobs:
5151
with:
5252
path: ./.venv
5353
key: venv-${{ hashFiles('poetry.lock') }}
54+
- name: Install system dependancies
55+
run: |
56+
sudo apt-get update
57+
sudo apt-get install libcrack2-dev
5458
- name: Install the project dependencies
5559
run: poetry install
5660
- name: Package project

0 commit comments

Comments
 (0)