From e23d840bc5f06595c1a71f7542faacd34d38684d Mon Sep 17 00:00:00 2001 From: Kevaundray Wedderburn Date: Tue, 27 Aug 2024 12:03:11 +0100 Subject: [PATCH 1/2] publish maybe_rayon --- .github/workflows/release-rust-crates.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/release-rust-crates.yml b/.github/workflows/release-rust-crates.yml index 7e632547..284435a1 100644 --- a/.github/workflows/release-rust-crates.yml +++ b/.github/workflows/release-rust-crates.yml @@ -79,6 +79,11 @@ jobs: toolchain: stable # These steps are in a specific order so crate dependencies are updated first + - name: Publish bls12_381 + run: cargo publish --package crate_crypto_internal_eth_kzg_maybe_rayon + env: + CARGO_REGISTRY_TOKEN: ${{ secrets.CRATES_IO_RELEASE_TOKEN }} + - name: Publish bls12_381 run: cargo publish --package crate_crypto_internal_eth_kzg_bls12_381 env: From 6972238ede9a2cd9dbaeb96fdd72ec1e45774b75 Mon Sep 17 00:00:00 2001 From: kevaundray Date: Tue, 27 Aug 2024 12:04:10 +0100 Subject: [PATCH 2/2] Update .github/workflows/release-rust-crates.yml --- .github/workflows/release-rust-crates.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-rust-crates.yml b/.github/workflows/release-rust-crates.yml index 284435a1..63e596a6 100644 --- a/.github/workflows/release-rust-crates.yml +++ b/.github/workflows/release-rust-crates.yml @@ -79,7 +79,7 @@ jobs: toolchain: stable # These steps are in a specific order so crate dependencies are updated first - - name: Publish bls12_381 + - name: Publish maybe_rayon run: cargo publish --package crate_crypto_internal_eth_kzg_maybe_rayon env: CARGO_REGISTRY_TOKEN: ${{ secrets.CRATES_IO_RELEASE_TOKEN }}