Hi,
I’m tagging my development branch with a tag v0.0.1 and CI still deploys to staging.
Here’s my setup:
deployment:
staging:
branch: develop
commands:
- do smth to deploy to staging
production:
tag: /v[0-9]+(\.[0-9]+)*/
commands:
- do smth to deploy to production
So I tag my develop branch with a tag v0.0.0 and CI still deploys it to staging? Any ideas?