From 6c3c840d0d0f7a8e2cc7bc6b919c2bf903dc524c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eike=20Ha=C3=9F?= Date: Wed, 8 Mar 2023 15:16:49 +0100 Subject: [PATCH] remove explicit version bump --- .github/actions/release/bump-versions/action.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/actions/release/bump-versions/action.yml b/.github/actions/release/bump-versions/action.yml index da119ef373..aa2cdf1d94 100644 --- a/.github/actions/release/bump-versions/action.yml +++ b/.github/actions/release/bump-versions/action.yml @@ -36,16 +36,16 @@ runs: if: ${{inputs.release-target == 'rust'}} working-directory: bindings/wasm run: | - cargo add identity_iota@=${{ inputs.version }} --path=../../identity_iota + cargo add identity_iota --path=../../identity_iota - name: Replace identity versions in stronghold nodejs bindings shell: bash if: ${{inputs.release-target == 'rust'}} working-directory: bindings/stronghold-nodejs run: | - cargo add identity_core@=${{ inputs.version }} --path=../../identity_core - cargo add identity_iota_core@=${{ inputs.version }} --path=../../identity_iota_core - cargo add identity_account_storage@=${{ inputs.version }} --path=../../identity_account_storage + cargo add identity_core --path=../../identity_core + cargo add identity_iota_core --path=../../identity_iota_core + cargo add identity_account_storage --path=../../identity_account_storage - name: Bump Rust crate versions shell: bash