Skip to content

Commit

Permalink
Merge pull request #1982 from hborawski/cocoapods-multi-specs
Browse files Browse the repository at this point in the history
feat: push multiple podspecs
  • Loading branch information
adierkens committed May 19, 2021
2 parents bd6b041 + 5dfa5a7 commit b8697c8
Show file tree
Hide file tree
Showing 3 changed files with 425 additions and 55 deletions.
23 changes: 23 additions & 0 deletions plugins/cocoapods/README.md
Expand Up @@ -38,6 +38,29 @@ yarn add -D @auto-it/cocoapods
}
```

Or with multiple podspecs:

```json
{
"plugins": [
[
"cocoapods",
{
// Required, the relative path to your podspec file
"podspecPath": ["./Test.podspec", "./Test2.podspec"],
// Optional, the specs repo to push to
"specsRepo": "https://github.com/intuit/TestSpecs.git",
// Optional, flags to pass to the `pod repo push` command
"flags": ["--sources=https://github.com/SpecRepo.git"],
// Optional, specify a different executable for `pod`
"podCommand": "bundle exec pod"
}
]
// other plugins
]
}
```

## Requirements

### General
Expand Down

0 comments on commit b8697c8

Please sign in to comment.