From 486d87106eb50aadab2cbde97ded53eaac28967e Mon Sep 17 00:00:00 2001 From: afinnell Date: Wed, 15 May 2024 15:32:53 -0400 Subject: [PATCH] Allow warnings when pod trunk push ## Summary We now have some warnings in PINRemoteImage because we still use MD5. It's fine for our use cases, but it means anywhere we use `pod` we have to pass `allow-warnings`. In this case, when publishing the Cocoapod. --- .github/workflows/publish_release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish_release.yml b/.github/workflows/publish_release.yml index 9ef71f79..cac7c402 100644 --- a/.github/workflows/publish_release.yml +++ b/.github/workflows/publish_release.yml @@ -41,4 +41,4 @@ jobs: - name: Push to Cocoapods env: COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }} - run: pod trunk push + run: pod trunk push --allow-warnings