We’ve been using the following 1.0 config for well over a year, and it has been working flawlessly.
machine:
...
general:
branches:
only:
- skip
dependencies:
pre:
...
override:
...
test:
override:
...
deployment:
hub:
tag: /[0-9]+(\.[0-9]+)*/
commands:
...
Now, last week something changed, as it is no longer building, saying
'' is not configured as a white-listed branch. Please see configuration docs for further details.
What has changed and what is the right way to configure tag based building & deployment now?
We only want to run build if the tag matches, not on every commit.