From e6f0a8f3f09c528e7bd50d86de51fe3fdb677fda Mon Sep 17 00:00:00 2001 From: Onuralp SEZER Date: Mon, 16 Dec 2024 20:52:13 +0300 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20=20run=20twine=20via=20po?= =?UTF-8?q?etry=20run=20command=20to=20make=20sure=20existence=20of=20twin?= =?UTF-8?q?e=20package?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Onuralp SEZER --- .github/workflows/publish-test.yml | 2 +- .github/workflows/publish.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-test.yml b/.github/workflows/publish-test.yml index 4b969a210..71892612b 100644 --- a/.github/workflows/publish-test.yml +++ b/.github/workflows/publish-test.yml @@ -38,7 +38,7 @@ jobs: run: | poetry install --with=build poetry build - twine check --strict dist/* + poetry run twine check --strict dist/* - name: 🚀 Publish to PyPi uses: pypa/gh-action-pypi-publish@67339c736fd9354cd4f8cb0b744f2b82a74b5c70 # v1.12.3 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index ebc2ff228..398c9deb3 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -36,7 +36,7 @@ jobs: run: | poetry install --with=build poetry build - twine check --strict dist/* + poetry run twine check --strict dist/* - name: 🚀 Publish to PyPi uses: pypa/gh-action-pypi-publish@67339c736fd9354cd4f8cb0b744f2b82a74b5c70 # v1.12.3