From 59a2e3bc395cfaca694dff170727dc1632e6c078 Mon Sep 17 00:00:00 2001 From: Guillaume Lagrange Date: Tue, 14 Jan 2025 15:14:22 -0500 Subject: [PATCH] Add burn-remote to publish workflow --- .github/workflows/publish.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 8b8916c631..46446ced01 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -6,6 +6,31 @@ on: - "v*" jobs: + publish-burn-router: + uses: tracel-ai/github-actions/.github/workflows/publish-crate.yml@v1 + with: + crate: burn-router + needs: + - publish-burn-common + - publish-burn-tensor + # dev dependencies + - publish-burn-autodiff + - publish-burn-ndarray + - publish-burn-wgpu + secrets: + CRATES_IO_API_TOKEN: ${{ secrets.CRATES_IO_API_TOKEN }} + + publish-burn-remote: + uses: tracel-ai/github-actions/.github/workflows/publish-crate.yml@v1 + with: + crate: burn-derive + needs: + - publish-burn-common + - publish-burn-tensor + - publish-burn-router + secrets: + CRATES_IO_API_TOKEN: ${{ secrets.CRATES_IO_API_TOKEN }} + publish-burn-derive: uses: tracel-ai/github-actions/.github/workflows/publish-crate.yml@v1 with: @@ -162,6 +187,7 @@ jobs: - publish-burn-tch - publish-burn-ndarray - publish-burn-candle + - publish-burn-remote with: crate: burn-core secrets: