Feature/621 move paths into baseconfig (#623) #32
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: CD | |
| on: | |
| push: | |
| tags: | |
| - '**' | |
| - '!v*' | |
| jobs: | |
| check-tag-version-job: | |
| name: Check Release Tag | |
| uses: ./.github/workflows/check-release-tag.yml | |
| permissions: | |
| contents: read | |
| cd-job: | |
| needs: [ check-tag-version-job ] | |
| name: Continuous Delivery | |
| uses: ./.github/workflows/build-and-publish.yml | |
| permissions: | |
| contents: write | |
| secrets: | |
| PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }} | |
| publish-docs: | |
| needs: [ cd-job ] | |
| name: Publish Documentation | |
| uses: ./.github/workflows/gh-pages.yml | |
| permissions: | |
| contents: read | |
| pages: write | |
| id-token: write |