From 9bcebe7ead8d83a4e53e65ded155616bc248e63b Mon Sep 17 00:00:00 2001 From: Johannes Tuerk Date: Mon, 4 Mar 2024 09:43:25 +0100 Subject: [PATCH] fix pipeline Signed-off-by: Johannes Tuerk --- .github/workflows/publish-nuget-xamarin.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/publish-nuget-xamarin.yaml b/.github/workflows/publish-nuget-xamarin.yaml index d77c1047..2e999871 100644 --- a/.github/workflows/publish-nuget-xamarin.yaml +++ b/.github/workflows/publish-nuget-xamarin.yaml @@ -37,6 +37,7 @@ jobs: run: | # Extract the PackageReference line line=$(xmllint --xpath "string(/Project/ItemGroup/PackageReference[@Include='WalletFramework.Indy.Sdk'])" src/Hyperledger.Aries/Hyperledger.Aries.csproj) + echo "line: $line" # Replace WalletFramework.Indy.Sdk with Hyperledger.Aries.Indy.Sdk new_line=$(echo $line | sed "s/WalletFramework.Indy.Sdk/Hyperledger.Indy.Sdk/g" | sed "s/\$\(WalletFrameworkIndySdkVersion\)/1.11.1/g")