File tree Expand file tree Collapse file tree 1 file changed +13
-13
lines changed Expand file tree Collapse file tree 1 file changed +13
-13
lines changed Original file line number Diff line number Diff line change 99 deploy :
1010 runs-on : ubuntu-latest
1111 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- env :
23- POETRY_PYPI_TOKEN_PYPI : ${{ secrets.PYPI_TOKEN }}
24- run : poetry publish --build
12+ - uses : actions/checkout@v2
13+ - name : Install poetry
14+ run : pipx install poetry
15+ - name : Set up Python
16+ uses : actions/setup-python@v4
17+ with :
18+ python-version : " 3.9 "
19+ - name : Install deps
20+ run : poetry install
21+ - name : Release package
22+ env :
23+ POETRY_PYPI_TOKEN_PYPI : ${{ secrets.PYPI_TOKEN }}
24+ run : poetry publish --build
You can’t perform that action at this time.
0 commit comments