From c007714ab72dc5e1773da15b2fafe7c772c2f636 Mon Sep 17 00:00:00 2001 From: Randy Blea <92941033+blearandy@users.noreply.github.com> Date: Wed, 3 Dec 2025 13:10:48 -0600 Subject: [PATCH 1/3] Add workflow to publish package to pypi when release is created --- .github/workflows/python-publish.yml | 71 ++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 .github/workflows/python-publish.yml diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml new file mode 100644 index 0000000..74de1e2 --- /dev/null +++ b/.github/workflows/python-publish.yml @@ -0,0 +1,71 @@ +# This workflow will upload a Python Package to PyPI when a release is created +# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries + +# This workflow uses actions that are not certified by GitHub. +# They are provided by a third-party and are governed by +# separate terms of service, privacy policy, and support +# documentation. + +name: Publish pyds8k Python Package to PyPI + +on: + release: + types: [published] + +permissions: + contents: read + +jobs: + release-build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - uses: actions/setup-python@v5 + with: + python-version: "3.x" + + - name: Build release distributions + run: | + # NOTE: put your own distribution build steps here. + python -m pip install build + python -m build + + - name: Upload distributions + uses: actions/upload-artifact@v4 + with: + name: release-dists + path: dist/ + + pypi-publish: + runs-on: ubuntu-latest + needs: + - release-build + permissions: + # IMPORTANT: this permission is mandatory for trusted publishing + id-token: write + + # Dedicated environments with protections for publishing are strongly recommended. + # For more information, see: https://docs.github.com/en/actions/deployment/targeting-different-environments/using-environments-for-deployment#deployment-protection-rules + environment: + name: pypi + # OPTIONAL: uncomment and update to include your PyPI project URL in the deployment status: + # url: https://pypi.org/p/YOURPROJECT + url: https://pypi.org/project/pyds8k/ + # + # ALTERNATIVE: if your GitHub Release name is the PyPI project version string + # ALTERNATIVE: exactly, uncomment the following line instead: + # url: https://pypi.org/project/YOURPROJECT/${{ github.event.release.name }} + + steps: + - name: Retrieve release distributions + uses: actions/download-artifact@v4 + with: + name: release-dists + path: dist/ + + - name: Publish release distributions to PyPI + uses: pypa/gh-action-pypi-publish@release/v1 + with: + packages-dir: dist/ From 245055111b6dd29b2c0cef9ae582ede7b440bfc1 Mon Sep 17 00:00:00 2001 From: Randy Blea Date: Wed, 3 Dec 2025 13:45:53 -0600 Subject: [PATCH 2/3] Update python-publish.yml --- .github/workflows/python-publish.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index 74de1e2..c9ffec1 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -10,7 +10,7 @@ name: Publish pyds8k Python Package to PyPI on: release: - types: [published] + types: [published, edited] permissions: contents: read @@ -29,8 +29,9 @@ jobs: - name: Build release distributions run: | # NOTE: put your own distribution build steps here. - python -m pip install build - python -m build + python3 setup.py sdist + python3 setup.py bdist_wheel + python3 setup.py build - name: Upload distributions uses: actions/upload-artifact@v4 From ce6e9865f007b997d0c013eea859d6691efe6eca Mon Sep 17 00:00:00 2001 From: Randy Blea Date: Wed, 3 Dec 2025 14:04:25 -0600 Subject: [PATCH 3/3] Update python-publish.yml --- .github/workflows/python-publish.yml | 67 ++++++---------------------- 1 file changed, 14 insertions(+), 53 deletions(-) diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index c9ffec1..3f435ab 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -12,61 +12,22 @@ on: release: types: [published, edited] -permissions: - contents: read - jobs: - release-build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - - uses: actions/setup-python@v5 - with: - python-version: "3.x" - - - name: Build release distributions - run: | - # NOTE: put your own distribution build steps here. - python3 setup.py sdist - python3 setup.py bdist_wheel - python3 setup.py build - - - name: Upload distributions - uses: actions/upload-artifact@v4 - with: - name: release-dists - path: dist/ - - pypi-publish: + run: runs-on: ubuntu-latest - needs: - - release-build - permissions: - # IMPORTANT: this permission is mandatory for trusted publishing - id-token: write - - # Dedicated environments with protections for publishing are strongly recommended. - # For more information, see: https://docs.github.com/en/actions/deployment/targeting-different-environments/using-environments-for-deployment#deployment-protection-rules environment: name: pypi - # OPTIONAL: uncomment and update to include your PyPI project URL in the deployment status: - # url: https://pypi.org/p/YOURPROJECT - url: https://pypi.org/project/pyds8k/ - # - # ALTERNATIVE: if your GitHub Release name is the PyPI project version string - # ALTERNATIVE: exactly, uncomment the following line instead: - # url: https://pypi.org/project/YOURPROJECT/${{ github.event.release.name }} - + permissions: + id-token: write + contents: read steps: - - name: Retrieve release distributions - uses: actions/download-artifact@v4 - with: - name: release-dists - path: dist/ - - - name: Publish release distributions to PyPI - uses: pypa/gh-action-pypi-publish@release/v1 - with: - packages-dir: dist/ + - name: Checkout + uses: actions/checkout@v5 + - name: Install uv + uses: astral-sh/setup-uv@v7 + - name: Install Python 3.13 + run: uv python install 3.13 + - name: Build + run: uv build + - name: Publish + run: uv publish \ No newline at end of file