There are multiple ways to trigger a build in Appcircle. You can trigger builds manually or automate the process with triggers.
As the name states, your build profile will not build your application until you tell it to. You can browse branches in your Git repository and select any commit from any branch you need built.
Appcircle will start building your application whenever you push a commit to your Git repository. Regardless of the branch, your project will be built automatically.
Appcircle will start building your application whenever you perfom a tagged push to your Git repository. Regardless of the tag, your project will be built automatically.
Appcircle will start building your application whenever you perfom a push with certain tag or tags to your Git repository. Your project will be built automatically only if the push has the tag or tags you specify.
You can specify tags with Unix shell-style wildcards to trigger builds. Here's a list of wildcards available:
Pattern | Description | Example |
| Macthes anything | Will build all tags |
| Matches anything between asterisks |
|
| Matches a single character |
|
| Matches any character between brackets |
|
| Matches any character not in between brackets |
|
​