From bd4ea46a938e2bc5f81d1990e648994447ea49f2 Mon Sep 17 00:00:00 2001 From: Philipp Hofmann Date: Fri, 22 Nov 2024 14:28:42 +0100 Subject: [PATCH] chore: Comment why we can't use cocoapods 1.16.2 (#570) Explain why we can't use cocoapods 1.16.2 and link a related GH issue. --- Gemfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index f5ace479..a5b0f614 100644 --- a/Gemfile +++ b/Gemfile @@ -2,6 +2,10 @@ # Pin CocoaPods Version to avoid that bugs in CocoaPods like # https://github.com/CocoaPods/CocoaPods/issues/12081 break our release # workflow. -# 1.16.2 has a bug that breaks the release workflow +# 1.16.2 has a bug that breaks the release workflow. Publishing with craft then +# fails with: +# - ERROR | [iOS] unknown: Encountered an unknown error (Unable to locate the +# executable `rsync`) during validation. +# This could be related to https://github.com/CocoaPods/CocoaPods/issues/12674. # Therefore, we stick to 1.14.2. gem "cocoapods", "= 1.14.2"