Skip to content

Commit

Permalink
ci: cleanup dependency graph
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanielsimard committed Nov 20, 2022
1 parent a8e75f6 commit df95fc3
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: publish
on:
push:
tags:
- '*'
- 'v*'

jobs:
publish-burn-derive:
Expand All @@ -26,37 +26,47 @@ jobs:

publish-burn-tensor:
uses: burn-rs/burn/.github/workflows/publish-template.yml@main
needs: publish-burn-tensor-testgen
needs:
- publish-burn-tensor-testgen
with:
crate: burn-tensor
secrets: inherit

publish-burn-autodiff:
uses: burn-rs/burn/.github/workflows/publish-template.yml@main
needs: publish-burn-tensor
needs:
- publish-burn-tensor
- publish-burn-tensor-testgen
with:
crate: burn-autodiff
secrets: inherit

publish-burn-tch:
uses: burn-rs/burn/.github/workflows/publish-template.yml@main
needs: publish-burn-autodiff
needs:
- publish-burn-tensor
- publish-burn-autodiff
with:
crate: burn-tch
secrets: inherit

publish-burn-ndarray:
uses: burn-rs/burn/.github/workflows/publish-template.yml@main
needs: publish-burn-autodiff
needs:
- publish-burn-tensor
- publish-burn-autodiff
with:
crate: burn-ndarray
secrets: inherit

publish-burn:
uses: burn-rs/burn/.github/workflows/publish-template.yml@main
needs:
- publish-burn-ndarray
- publish-burn-derive
- publish-burn-dataset
- publish-burn-tensor
- publish-burn-autodiff
- publish-burn-ndarray
with:
crate: burn
secrets: inherit

0 comments on commit df95fc3

Please sign in to comment.