Add image output tiles
First step includes tiles so let's create output tiles component to show in this step
This commit is contained in:
parent
c040b004ad
commit
2f3f9f9367
9 changed files with 120 additions and 21 deletions
|
|
@ -1,13 +1,13 @@
|
|||
export default (values, skipFirst, skipSecond) => {
|
||||
if (!skipFirst && values?.['role-type']?.includes('a')) {
|
||||
export default ({ 'target-environment': targetEnv } = {}, skipFirst, skipSecond) => {
|
||||
if (!skipFirst && targetEnv?.aws) {
|
||||
return 'aws-target-env';
|
||||
}
|
||||
|
||||
if (!skipSecond && values?.['role-type']?.includes('b')) {
|
||||
if (!skipSecond && targetEnv?.azure) {
|
||||
return 'ms-azure-target-env';
|
||||
}
|
||||
|
||||
if (values?.['role-type']?.includes('c')) {
|
||||
if (targetEnv?.google) {
|
||||
return 'google-cloud-target-env';
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue