Release Orchestrator #16
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 Orchestrator | |
| on: | |
| push: | |
| tags: ["v*.*.*"] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| uses: ./.github/workflows/build-binaries.yml | |
| publish-pypi: | |
| uses: ./.github/workflows/publish-pypi.yml | |
| needs: build # ← Can run after build, even in parallel with cargo | |
| secrets: | |
| PYPI_API_TOKEN: ${{ secrets.PYPI_API_TOKEN }} | |
| publish-cargo: | |
| uses: ./.github/workflows/publish-cargo.yml | |
| secrets: | |
| CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} |