Allow disabling a step in the workflow

From Bitrise on 2016/03/17 18:25:29 +0000

Thanks for the request, it's a great idea! Just wanted to note that you can do this in the bitrise.yml mode, in the Workflow Editor:

Just add a run_if: false expression to the step you want to skip. If a run_if expression is defined it'll be evaluated (the result have to be a boolean) before running the step, and if it evaluates to false then the Step will be skipped.

You can find examples for run_if on GitHub: https://github.com/bitrise-io/bitrise/blob/master/_examples/experimentals/templates/bitrise.yml

1 Like