Bump version #28
Workflow file for this run
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 new version of package and publish to PyPI | |
on: | |
workflow_dispatch: | |
push: | |
tags: | |
- '[0-9]+.[0-9]+.[0-9]+' | |
jobs: | |
check: | |
name: Lint code and check format | |
uses: ./.github/workflows/_check.yaml | |
test: | |
name: Run tests | |
needs: check | |
uses: ./.github/workflows/_test.yaml | |
build: | |
name: Build dists | |
needs: test | |
uses: ./.github/workflows/_build.yaml | |
publish: | |
name: Publish package to PyPI and make release on Github | |
needs: build | |
uses: ./.github/workflows/_publish.yaml | |
permissions: | |
id-token: write | |
contents: write |