From 32c2925d4e5c15810a09a59e8a007eb3e4cbef11 Mon Sep 17 00:00:00 2001 From: "Meir Shpilraien (Spielrein)" Date: Thu, 4 May 2023 07:51:03 +0300 Subject: [PATCH] Fix publish CI (#323) toml-editor can only set strings value. This is good enough for us because we do not really need the path argument. --- .github/workflows/cratesio-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cratesio-publish.yml b/.github/workflows/cratesio-publish.yml index d8c22d27..db2e0290 100644 --- a/.github/workflows/cratesio-publish.yml +++ b/.github/workflows/cratesio-publish.yml @@ -33,7 +33,7 @@ jobs: with: file: "Cargo.toml" key: "dependencies.redis-module-macros-internals" - value: '{ path = "./redismodule-rs-macros-internals", version = "${{ steps.get_version.outputs.VERSION }}" }' + value: "${{ steps.get_version.outputs.VERSION }}" - name: Set the version for publishing on macros crate uses: ciiiii/toml-editor@1.0.0