Skip to content

Commit

Permalink
fix action file
Browse files Browse the repository at this point in the history
  • Loading branch information
bbelderbos committed Oct 6, 2021
1 parent b5f3090 commit 6091f0f
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/pre_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@ jobs:
- name: Add Poetry to path
run: echo "${HOME}/.poetry/bin" >> $GITHUB_PATH
- name: Install Poetry
- run: poetry install
- name: Configure Poetry
- run: poetry config repositories.testpypi https://test.pypi.org/legacy/
- run: poetry config pypi-token.testpypi ${{ secrets.TEST_PYPI_API_TOKEN }}
run: poetry install
- name: Set testpypi repo
run: poetry config repositories.testpypi https://test.pypi.org/legacy/
- name: Set testpypi token
run: poetry config pypi-token.testpypi ${{ secrets.TEST_PYPI_API_TOKEN }}
- name: Publish package
run: poetry publish --build -r testpypi

0 comments on commit 6091f0f

Please sign in to comment.