Skip to content

fix (ci): made error handling more explicit when gitcraft bin for the… #28

fix (ci): made error handling more explicit when gitcraft bin for the…

fix (ci): made error handling more explicit when gitcraft bin for the… #28

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 }}