Skip to content

chore(deps-dev): bump the development-dependencies group with 2 updat… #81

chore(deps-dev): bump the development-dependencies group with 2 updat…

chore(deps-dev): bump the development-dependencies group with 2 updat… #81

Workflow file for this run

name: Build and Publish
on:
push:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
permissions: {}
jobs:
build:
name: Build Wheel and SDist
runs-on: ubuntu-latest
outputs:
name: ${{ steps.baipp.outputs.package_name }}
version: ${{ steps.baipp.outputs.package_version }}
permissions:
contents: read
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0
persist-credentials: false
- uses: hynek/build-and-inspect-python-package@f3d069d0f9a3c9169d1a483318bb0e09876a6fd6 # v2.15.0
id: baipp
publish:
name: PyPI
needs: [build]
runs-on: ubuntu-latest
environment:
name: publishing
url: https://pypi.org/p/${{ needs.build.outputs.name }}/${{ needs.build.outputs.version }}/
if: startsWith(github.ref, 'refs/tags/')
permissions:
id-token: write # Needed for OIDC PyPI publishing
steps:
- uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
with:
name: Packages
path: dist
- name: Publish
uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # v1.13.0