From 9933339c4893875d5c58b82435f15c3311ec62d6 Mon Sep 17 00:00:00 2001 From: deannagarcia <69992229+deannagarcia@users.noreply.github.com> Date: Tue, 29 Nov 2022 10:33:53 -0800 Subject: [PATCH] Disable CocoaPods watchOS validation https://github.com/CocoaPods/CocoaPods/issues/11558 is causing this GHA to fail. It has been resolved in main, but this will continue to fail until a release is out and we migrate to it. --- .github/workflows/objc_cocoapods.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/objc_cocoapods.yml b/.github/workflows/objc_cocoapods.yml index dd330a880b..d828ae390c 100644 --- a/.github/workflows/objc_cocoapods.yml +++ b/.github/workflows/objc_cocoapods.yml @@ -24,7 +24,8 @@ jobs: strategy: fail-fast: false matrix: - PLATFORM: ["ios", "macos", "tvos", "watchos"] + # Add back 'watchos'. See CocoaPods/CocoaPods#11558 + PLATFORM: ["ios", "macos", "tvos"] CONFIGURATION: ["Debug", "Release"] steps: - uses: actions/checkout@v2