Skip to content

Commit

Permalink
fix: build
Browse files Browse the repository at this point in the history
  • Loading branch information
severinsimmler committed Jul 19, 2024
1 parent baca66d commit 04b32c8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
name: Install Python
with:
python-version: "3.11"
python-version: "3.12"

- name: Install Poetry
run: pip install poetry
Expand All @@ -29,4 +29,4 @@ jobs:
run: poetry build

- name: Publish wheels
run: poetry publish --username ${{ secrets.PYPI_USER }} --password ${{ secrets.PYPI_PW }}
run: poetry config pypi-token.pypi ${{ secrets.PYPI_TOKEN }} && poetry publish

0 comments on commit 04b32c8

Please sign in to comment.