We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 177f028 + 60a980c commit 8b1b5f1Copy full SHA for 8b1b5f1
1 file changed
.github/workflows/release.yml
@@ -9,16 +9,16 @@ jobs:
9
deploy:
10
runs-on: ubuntu-latest
11
steps:
12
- - uses: actions/checkout@v2
13
- - name: Set up Python
14
- uses: actions/setup-python@v2
15
- with:
16
- python-version: '3.8'
17
- - name: Install deps
18
- uses: knowsuchagency/poetry-install@v1
19
- env:
20
- POETRY_VIRTUALENVS_CREATE: false
21
- - name: Release package
22
23
- POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }}
24
- run: poetry publish --build
+ - uses: actions/checkout@v2
+ - name: Install poetry
+ run: pipx install poetry
+ - name: Set up Python
+ uses: actions/setup-python@v4
+ with:
+ python-version: "3.9"
+ - name: Install deps
+ run: poetry install
+ - name: Release package
+ env:
+ POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }}
+ run: poetry publish --build
0 commit comments