Why Manual Deploy trigger cannot be clicked when intermediate step also manual trigger is not finished yet,
Somehow I need to skip intermediate step, as it optional,
Ex.
Below, the third step deploy cannot be click
- step:
name: Build & Testing (v16)
image: node:16-alpine3.11
deployment: v16
artifacts:
- build/**
- step:
name: Build & Testing (v14)
image: node:16-alpine3.11
trigger: manual
deployment: v14
artifacts:
- build/**
- step:
name: Deploy to S3
deployment: production
trigger: manual
Or
- parallel:
- step:
name: Build & Testing (v16)
image: node:16-alpine3.11
deployment: v16
artifacts:
- build/**
- step:
name: Build & Testing (v14)
image: node:16-alpine3.11
trigger: manual
deployment: v14
artifacts:
- build/**
- step:
name: Deploy to S3
deployment: production
trigger: manual