chore(deps-dev): Bump ty in the development-dependencies group (#17) #65
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Release | |
| on: | |
| push: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| env: | |
| FORCE_COLOR: 1 | |
| permissions: | |
| contents: write # Needed to upload artifacts to the release | |
| id-token: write # Needed for OIDC PyPI publishing | |
| jobs: | |
| build: | |
| name: Build Wheel and SDist | |
| runs-on: ubuntu-latest | |
| outputs: | |
| name: ${{ steps.baipp.outputs.package_name }} | |
| version: ${{ steps.baipp.outputs.package_version }} | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - uses: hynek/build-and-inspect-python-package@efb823f52190ad02594531168b7a2d5790e66516 # v2.14.0 | |
| id: baipp |