Skip to content

Commit

Permalink
fix: fix release process
Browse files Browse the repository at this point in the history
  • Loading branch information
johanneskoester committed Oct 29, 2023
1 parent be68864 commit 794bba8
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,24 +24,23 @@ jobs:
steps:
- uses: actions/checkout@v3

- uses: actions/setup-python@v2
- uses: actions/setup-python@v4
with:
python-version: "3.9"
python-version: "3.11"

- name: Install poetry
run: pipx install poetry
run: pip install poetry

- name: Determine dependencies
run: poetry lock

- uses: actions/setup-python@v4
with:
python-version: "3.9"
python-version: "3.11"
cache: poetry

- name: Install Dependencies using Poetry
- name: Install dependencies
run: |
pip install connection-pool # because it is incompatible with poetry
poetry install
- name: Publish to PyPi
Expand Down

0 comments on commit 794bba8

Please sign in to comment.