ci(release): adopt the verified release flow (#99) #1
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: Publish dev build to Test PyPI | ||
| # The continuous dev feed: every push to main lands on Test PyPI as a `.devN` | ||
| # build. Separate from the release flow, which publishes the tagged version to | ||
| # Test PyPI and then PyPI -- both use skip-existing, so they cannot collide. | ||
| on: | ||
| workflow_dispatch: | ||
| push: | ||
| branches: | ||
| - main | ||
| permissions: | ||
| contents: read | ||
| jobs: | ||
| build: | ||
| name: Reuse build | ||
| uses: ./.github/workflows/build.yml | ||
| permissions: | ||
| contents: read | ||
| publish-to-test-pypi: | ||
|
Check failure on line 23 in .github/workflows/publish-dev-to-testpypi.yml
|
||
| needs: build | ||
| uses: reqstool/.github/.github/workflows/python-publish-to-pypi.yml@main | ||
| permissions: | ||
| id-token: write | ||
| with: | ||
| target: testpypi | ||