In circleCi deploys are executed parallely.
Could you tell me how to execut deploys sequentially?
For example I have 3 deploys like below.
I need to execut deploy-1 then deploy-2 then deploy-3
There is no need to have a deploy success to each other.
I just do not want to execut these deploys parallely.
workflows:
version: 2
build-and-deploy:
jobs:
- build:
- deploy:
name: deploy-1
context: k8s
namespace: “test”
requires:
- decrypt-test
filters:
branches:
only: test
- deploy:
name: deploy-2
context: k8s
namespace: “test”
requires:
- decrypt-test
filters:
branches:
only: test
- deploy:
name: deploy-3
context: k8s
namespace: “test”
requires:
- decrypt-test
filters:
branches:
only: test