From 868ec397519a62ea18ea5bfe9af1ee748655e30c Mon Sep 17 00:00:00 2001 From: jfm Date: Fri, 3 May 2024 13:55:42 +0200 Subject: [PATCH] Publishing to gitea as well --- .gitea/workflows/run.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitea/workflows/run.yaml b/.gitea/workflows/run.yaml index 12e2d92..fcd3f8b 100644 --- a/.gitea/workflows/run.yaml +++ b/.gitea/workflows/run.yaml @@ -37,4 +37,10 @@ jobs: export TWINE_PASSWORD=${{ secrets.TWINE_PASS }} export TWINE_REPOSITORY_URL=${{ secrets.TWINE_REPO }} pipenv run twine upload dist/* + - name: Publish Gitea Package + run: | + export TWINE_USERNAME=${{ secrets.PYPI_USER }} + export TWINE_PASSWORD=${{ secrets.PYPI_PASS }} + export TWINE_REPOSITORY_URL=${{ secrets.PYPI_REPO }} + pipenv run twine upload dist/*