From 04b7cdc1be838a5229d0f4f38e56fcaa82c6f405 Mon Sep 17 00:00:00 2001 From: DK96-OS <69859316+DK96-OS@users.noreply.github.com> Date: Fri, 19 Apr 2024 10:21:41 -0400 Subject: [PATCH] Publishing: * Update publish.yml - remove sigstore verification step --- .github/workflows/publish.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 9c2610f..6b01fdf 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -28,8 +28,7 @@ jobs: python-version: "3.12" - name: Install build requirements - run: | - python -m pip install build setuptools twine --user + run: python -m pip install build setuptools twine --user - name: Build a binary wheel and a source tarball run: python -m build --sdist --wheel --outdir dist/ @@ -40,11 +39,9 @@ jobs: inputs: >- ./dist/*.tar.gz ./dist/*.whl - verify: true - name: Publish package distributions to PyPI uses: pypa/gh-action-pypi-publish@release/v1 with: repository-url: https://pypi.org/p/treescriptify print-hash: true - verbose: true