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 9661a95 + c2b3538 commit 3890ae1Copy full SHA for 3890ae1
.github/workflows/CD.yaml
@@ -34,14 +34,12 @@ jobs:
34
with:
35
title: Release ${{ env.VERSION }}
36
37
- - name: Check python versions
38
- run: |
39
- python --version
40
- python3 --version
41
- which python3.10
42
- python3.10 --version
43
-
44
- - name: Build and publish to pypi
+ - name: Install Poetry
+ uses: snok/install-poetry@v1
+ with:
+ version: 1.3.2
+
+ - name: Publish to pypi
45
run: |
46
- curl -sSL https://install.python-poetry.org | python3.10 -
47
- poetry publish -u pinecone -p ${{ secrets.PYPI_PASSWORD }} --build
+ poetry config pypi-token.pypi ${{ secrets.PYPI_TOKEN }}
+ poetry publish --build
0 commit comments