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.
1 parent 16be087 commit a8b714dCopy full SHA for a8b714d
.github/workflows/release.yaml
@@ -8,7 +8,7 @@ jobs:
8
strategy:
9
matrix:
10
os: [ubuntu-20.04]
11
- python-version: ['3.11']
+ python-version: ["3.11"]
12
steps:
13
- uses: actions/checkout@v2
14
- name: Setup, Python ${{ matrix.python-version }}
@@ -18,11 +18,10 @@ jobs:
18
architecture: x64
19
- name: Deploy with Python ${{ matrix.python-version }}
20
env:
21
- PYPI_USERNAME: ${{ secrets.PYPI_USERNAME }}
22
- PYPI_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
+ POETRY_PYPI_TOKEN_PYPI: ${{ secrets.POETRY_PYPI_TOKEN_PYPI }}
23
run: |
24
python -m pip install -U pip
25
python -m pip install wheel
26
python -m pip install poetry
27
poetry build
28
- poetry publish --username="$PYPI_USERNAME" --password="$PYPI_PASSWORD"
+ poetry publish
0 commit comments