Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nanopb/nanopb.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetteri Aimonen <jpa@git.mail.kapsi.fi>2022-03-07 18:06:02 +0300
committerPetteri Aimonen <jpa@git.mail.kapsi.fi>2022-03-07 18:06:02 +0300
commit8018dc6bedda550c41fbf259791fbcd99983bd9c (patch)
tree113931f2276977b888ac538501d439ed94af05ad /.github
parent298c76003a595894ab573ad0abbde1d82f65e0a1 (diff)
Fix pypi publish script
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/pypi_publish.yml5
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/pypi_publish.yml b/.github/workflows/pypi_publish.yml
index 4cdc566..e0031d2 100644
--- a/.github/workflows/pypi_publish.yml
+++ b/.github/workflows/pypi_publish.yml
@@ -32,10 +32,11 @@ jobs:
- name: Publish PyPI package
env:
- PYPI_API_KEY: ${{ secrets.PYPI_API_KEY }}
+ POETRY_HTTP_BASIC_PYPI_USERNAME: __token__
+ POETRY_HTTP_BASIC_PYPI_PASSWORD: ${{ secrets.PYPI_API_KEY }}
run: |
cd nanopb/extra/poetry/build
- poetry publish -n -u __token__ -p $PYPI_API_KEY
+ poetry publish -n
test_pypi:
name: Test pypi package