I've been able to produce jazzy documentation for my iOS/swift projects and frameworks locally. I'd like to start producing them via Fastlane so that they get updated automatically when they get built on a Jenkins job.
I haven't been able to find any good documentation on incorporating jazzy with Fastlane or Jenkins.
Does anyone have any good tutorials or repo examples they can share? Additionally, I'd like to be able to pass something in my Fastfile or config file that uploads it to an S3 bucket.
It is well documented here: https://docs.fastlane.tools/actions/jazzy/#jazzy
You must specify the path to the
.jazzy.yamlfor the fastlane action.You can also look at https://github.com/realm/jazzy#usage to figure out what configuration is available for your
.jazzy.yamlfile." For a detailed explanation and an exhaustive list of all available options, run
jazzy --help config."After you create your lane, call
fastlane YOUR_LANE_NAMEin whatever CI you are using