diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3d87469..30efebd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,10 +37,18 @@ jobs: with: version: 23.x - - name: cargo publish + - name: cargo publish core uses: actions-rs/cargo@v1 env: CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} with: command: publish - args: --token "${CARGO_REGISTRY_TOKEN}" --manifest-path ./Cargo.toml + args: --token "${CARGO_REGISTRY_TOKEN}" --package spark-connect-core --manifest-path ./Cargo.toml + + - name: cargo publish rust + uses: actions-rs/cargo@v1 + env: + CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} + with: + command: publish + args: --token "${CARGO_REGISTRY_TOKEN}" --package spark-connect-rs --manifest-path ./Cargo.toml diff --git a/core/Cargo.toml b/core/Cargo.toml index 339feb4..ce1f190 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "spark-connect-core" -version = "0.0.0" +version = "0.0.1-beta.4" authors.workspace = true keywords.workspace = true readme.workspace = true diff --git a/rust/Cargo.toml b/rust/Cargo.toml index cf1a1b9..4e0f338 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "spark-connect-rs" -version = "0.0.1-beta.3" +version = "0.0.1-beta.4" authors.workspace = true keywords.workspace = true readme.workspace = true @@ -18,7 +18,7 @@ include = [ [dependencies] tokio = { workspace = true } -spark-connect-core = { version = "0.0.0", path = "../core" } +spark-connect-core = { version = "0.0.1-beta.4", path = "../core" } [features] tls = ["spark-connect-core/tls"]