Skip to content

bwake2021/circleci-pod-orb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

69 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CocoaPods Orb

CircleCI Build Status CircleCI Orb Version GitHub License CircleCI Community

This orb wrapps cocoapods and makes it handy to use in CircleCI.
Allows controll all basic functionality used during installation process.
Wrapps caching mechanism to improve build time.

Examples

Commands are pretty much the same as if you used them from the console:

Basic usage

version: 2.1

orbs:
  pod: xxkrashxx/pod@1.1.3<-- include this

jobs:
  basic-usage:
    steps:
      - checkout
      - pod/install <-- one liner command
      ...

Bundler support!

We highly recommend using environment as a code approach.
This will guarantee the same result on each computer.

version: 2.1

orbs:
  pod: xxkrashxx/pod@1.1.3

jobs:
  bundler-usage:
    steps:
      - checkout
      - pod/install:
          with-bundler: true
      ...

Advanced

For advanced usage examples, please, check official Orb page.


Resources

CircleCI Orb Registry Page - The official registry page of this orb for all versions, executors, commands, and jobs described.

CircleCI Orb Docs - Docs for using, creating, and publishing CircleCI Orbs.

How to Contribute

We welcome issues to and pull requests against this repository!

How to Publish An Update

  1. Merge pull requests with desired changes to the main branch.
  2. Find the current version of the orb.
    • You can run circleci orb info pod/pod | grep "Latest" to see the current version.
  3. Create a new Release on GitHub.
    • Click "Choose a tag" and create a new semantically versioned tag. (ex: v1.0.0)
      • We will have an opportunity to change this before we publish if needed after the next step.
  4. Click "+ Auto-generate release notes".
    • This will create a summary of all of the merged pull requests since the previous release.
    • If you have used Conventional Commit Messages it will be easy to determine what types of changes were made, allowing you to ensure the correct version tag is being published.
  5. Now ensure the version tag selected is semantically accurate based on the changes included.
  6. Click "Publish Release".
    • This will push a new tag and trigger your publishing pipeline on CircleCI.

About

Cocoapods wrapper for CircleCI Orbs.

Resources

License

Stars

Watchers

Forks

Packages

No packages published