diff --git a/.github/workflows/make_release_tfhe.yml b/.github/workflows/make_release_tfhe.yml index 0c8046c26..051297158 100644 --- a/.github/workflows/make_release_tfhe.yml +++ b/.github/workflows/make_release_tfhe.yml @@ -39,6 +39,7 @@ jobs: make-release: name: make_release_tfhe/make-release uses: ./.github/workflows/make_release_common.yml + if: ${{ inputs.push_to_crates }} with: package-name: "tfhe" dry-run: ${{ inputs.dry_run }} @@ -60,6 +61,7 @@ jobs: make-release-js: name: make_release_tfhe/make-release-js needs: make-release + if: ${{ always() && needs.make-release.result != 'failure' }} runs-on: ubuntu-latest # For provenance of npmjs publish permissions: diff --git a/Makefile b/Makefile index 96c265250..823a57bea 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,7 @@ BENCH_TYPE?=latency BENCH_PARAM_TYPE?=classical BENCH_PARAMS_SET?=default BENCH_CUSTOM_COMMAND:= -NODE_VERSION=22.6 +NODE_VERSION=24.12 BACKWARD_COMPAT_DATA_DIR=utils/tfhe-backward-compat-data WASM_PACK_VERSION="0.13.1" WASM_BINDGEN_VERSION:=$(shell cargo tree --target wasm32-unknown-unknown -e all --prefix none | grep "wasm-bindgen v" | head -n 1 | cut -d 'v' -f2)