Skip to content

chore (cd): Cargo toml versioning to 0.0.1 for gitcraft. #26

chore (cd): Cargo toml versioning to 0.0.1 for gitcraft.

chore (cd): Cargo toml versioning to 0.0.1 for gitcraft. #26

Workflow file for this run

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 }}
publish-npm:
uses: ./.github/workflows/publish-npm.yml
needs: build
secrets:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}