From c651cee4e7a662c1272ac4e497cd97c3fe48e6d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krsto=20Prorokovi=C4=87?= Date: Tue, 16 Apr 2024 12:10:32 +0200 Subject: [PATCH] fix release.yml --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0adb3f9..e3920a2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,4 +17,6 @@ jobs: # poetry config virtualenvs.path .virtualenvs - name: Publish to PyPI - run: poetry publish --build --username "__token__" --password ${{ secrets.PIPY_TOKEN }} \ No newline at end of file + env: + PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }} + run: poetry publish --build --username "__token__" --password $PYPI_TOKEN \ No newline at end of file