From f064baae68d242035128b73a32a18fdddf423dfc Mon Sep 17 00:00:00 2001 From: wakonig_k Date: Mon, 19 May 2025 17:08:16 +0200 Subject: [PATCH] fix: twine upload key --- .github/workflows/semantic_release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/semantic_release.yml b/.github/workflows/semantic_release.yml index 140bc2b2..9c7fb404 100644 --- a/.github/workflows/semantic_release.yml +++ b/.github/workflows/semantic_release.yml @@ -99,5 +99,5 @@ jobs: pip install python-semantic-release==9.* wheel build twine semantic-release -vv version if [ ! -d dist ]; then echo No release will be made; exit 0; fi - twine upload dist/* -u __token__ -p $CI_PYPI_TOKEN --skip-existing + twine upload dist/* -u __token__ -p ${{ secrets.CI_PYPI_TOKEN }} --skip-existing semantic-release publish