Skip to content

Commit

Permalink
Fix publish script
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanielsimard committed Jul 19, 2024
1 parent c85e869 commit 27d7459
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,44 @@ jobs:
- publish-cubecl-macros
secrets: inherit

publish-cubecl-linalg:
uses: tracel-ai/cubecl/.github/workflows/publish-template.yml@main
with:
crate: cubecl-linalg
needs:
- publish-cubecl-runtime
- publish-cubecl-core
secrets: inherit

publish-cubecl-wgpu:
uses: tracel-ai/cubecl/.github/workflows/publish-template.yml@main
with:
crate: cubecl-wgpu
needs:
- publish-cubecl-common
- publish-cubecl-runtime
- publish-cubecl-core
- publish-cubecl-linalg
secrets: inherit

publish-cubecl-cuda:
uses: tracel-ai/cubecl/.github/workflows/publish-template.yml@main
with:
crate: cubecl-cuda
needs:
- publish-cubecl-common
- publish-cubecl-runtime
- publish-cubecl-core
- publish-cubecl-linalg
secrets: inherit

publish-cubecl:
uses: tracel-ai/cubecl/.github/workflows/publish-template.yml@main
with:
crate: cubecl
needs:
- publish-cubecl-core
- publish-cubecl-cuda
- publish-cubecl-wgpu
- publish-cubecl-linalg
secrets: inherit

0 comments on commit 27d7459

Please sign in to comment.