From d19d92fda0ec49bbfc79b0b98f5ff9f81c54647a Mon Sep 17 00:00:00 2001 From: Gerd Duscher <50049264+gduscher@users.noreply.github.com> Date: Sun, 1 Sep 2024 17:20:32 -0400 Subject: [PATCH 1/2] Update actions.yml --- .github/workflows/actions.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index d1bd917e..cc4a9868 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -75,6 +75,6 @@ jobs: env: PYPI_TOKEN_PASSWORD: ${{ secrets.API_TOKEN_PYPI2 }} run: | - pip install wheel twine, build + pip install twine, build python -m build --sdist --wheel twine upload --username "__token__" --password $PYPI_TOKEN_PASSWORD dist/* From f120abd047668a52d38f3556e940aad3a7cefe08 Mon Sep 17 00:00:00 2001 From: Gerd Duscher <50049264+gduscher@users.noreply.github.com> Date: Sun, 1 Sep 2024 17:38:25 -0400 Subject: [PATCH 2/2] Update actions.yml --- .github/workflows/actions.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index cc4a9868..b51efede 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -75,6 +75,7 @@ jobs: env: PYPI_TOKEN_PASSWORD: ${{ secrets.API_TOKEN_PYPI2 }} run: | - pip install twine, build + pip install twine + pip install build python -m build --sdist --wheel twine upload --username "__token__" --password $PYPI_TOKEN_PASSWORD dist/*