ty0x2333 / cocoapods-action

A GitHub Action for validating Pods and testing iOS/macOS project
19 stars 11 forks source link

GitHub Action fails due to "Error running pod install" #10

Closed kenaitian closed 2 years ago

kenaitian commented 2 years ago

Here is my workflow:

name: Appstore Deployment on: workflow_dispatch: branches:

jobs: deploy_ios: name: Deploy build to TestFlight runs-on: macOS-latest steps:


I wonder if anyone knows whether I can fix this issue following this Cocoapods Action guide via https://github.com/marketplace/actions/cocoapods-action

GitHub Action log can be found here via https://github.com/lessimp/lessimp_logs/blob/main/iOS_github_action_log

kenaitian commented 2 years ago

I fixed the error whereby adding the following under "runs-on: macOS-latest" and "steps:" and changing Podfile's "platform :ios, 12" to 11 but the following fastlane error "Error: Executing lane closed_beta failed" ensues per github_action_fastlane_log:

runs-on: macOS-latest strategy: matrix: destination: ['platform=iOS Simulator,OS=13.3,name=iPhone 11'] xcode: ['/Application/Xcode.app'] steps:

github_action_fastlane_log