Skip to content

feat: add experiment cancellation token (#124) #22

feat: add experiment cancellation token (#124)

feat: add experiment cancellation token (#124) #22

Workflow file for this run

name: Publish
on:
push:
tags:
- "v*"
jobs:
burn-central-core:
uses: tracel-ai/github-actions/.github/workflows/publish-crate.yml@v1
with:
crate: burn-central-core
secrets:
CRATES_IO_API_TOKEN: ${{ secrets.CRATES_IO_API_TOKEN }}
# --------------------------------------------------------------------------------
burn-central-macros:
uses: tracel-ai/github-actions/.github/workflows/publish-crate.yml@v1
with:
crate: burn-central-macros
secrets:
CRATES_IO_API_TOKEN: ${{ secrets.CRATES_IO_API_TOKEN }}
# --------------------------------------------------------------------------------
burn-central-runtime:
uses: tracel-ai/github-actions/.github/workflows/publish-crate.yml@v1
with:
crate: burn-central-runtime
needs:
- burn-central-core
- burn-central-macros
secrets:
CRATES_IO_API_TOKEN: ${{ secrets.CRATES_IO_API_TOKEN }}
# --------------------------------------------------------------------------------
burn-central:
uses: tracel-ai/github-actions/.github/workflows/publish-crate.yml@v1
with:
crate: burn-central
needs:
- burn-central-core
- burn-central-macros
- burn-central-runtime
secrets:
CRATES_IO_API_TOKEN: ${{ secrets.CRATES_IO_API_TOKEN }}