Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix instructions on how to manually trigger a bundle build (#1561)
Resolves #1548 This PR moves the comments that explains how to trigger a code-based bundle build from `.circleci/config.yml` to `.circleci/continue_config.yml` and updates the contributing docs to reference the correct CircleCI config file. So the correct ways to [manually trigger a bundle build](https://github.com/tiny-pilot/tinypilot/blob/1ea663b0ee6679e0ab73e59f57de94e4b8e8a708/CONTRIBUTING.md#installing-a-nightly-bundle) is either the: 1. Code-based way > 1. In [the CircleCI configuration](/.circleci/continue_config.yml), change the `bundle_build_branch` parameter’s `default` value from `master` to `<< pipeline.git.branch >>`. > 1. Push your changes as branch to GitHub. CircleCI will now automatically build bundles for all subsequent commits of that branch. > 1. Before eventually merging your feature branch, remember to revert the `bundle_build_branch` parameter to the original value (i.e., `master`) 3. CircleCI web UI way > 1. On CircleCI’s overview page for the respective branch, click the “Trigger Pipeline” button. > 1. In the dialog, enter `bundle_build_branch` as parameter name, and the (exact) name of the branch as parameter value. > 1. Click the “Trigger Pipeline” button in the dialog. CircleCI will now build a bundle for the latest commit of that branch. <a data-ca-tag href="https://codeapprove.com/pr/tiny-pilot/tinypilot/1561"><img src="https://codeapprove.com/external/github-tag-allbg.png" alt="Review on CodeApprove" /></a>
- Loading branch information