Skip to content

Commit f6f9ddd

Browse files
authored
fix: Fix dry-run yaml file name (#2030)
1 parent 56ca268 commit f6f9ddd

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

.yamato/project-promotion.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,11 @@ promote_{{ project.name }}_{{ package.name }}_dry_run:
6363
dependencies:
6464
- .yamato/project-pack.yml#pack_{{ project.name }}
6565
- .yamato/project-publish.yml#publish_{{ project.name }}_{{ package.name }}
66-
- .yamato/project-promotion.yml#promotion_validate_{{ project.name }}_{{ package.name }}_{{ test_platforms.first.name }}_{{ validation_editor }}
66+
{% for editor in project.test_editors -%}
67+
{% for platform in test_platforms -%}
68+
- .yamato/project-promotion.yml#promotion_validate_{{ project.name }}_{{ package.name }}_{{ platform.name }}_{{ editor }}
69+
{% endfor -%}
70+
{% endfor -%}
6771

6872
{% endfor -%}
6973
{% endif -%}

.yamato/project-publish.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ publish_{{ project.name }}_{{ package.name }}:
3838
- "upm-ci~/packages/*.tgz"
3939
dependencies:
4040
- .yamato/project-pack.yml#pack_{{ project.name }}
41-
- .yamato/project-tests.yml#validate_{{ package.name }}_{{ test_platforms.first.name }}_{{ validation_editor }}
41+
- .yamato/project-publish.yml#validate_{{ package.name }}_{{ test_platforms.first.name }}_{{ validation_editor }}
4242
- .yamato/project-publish.yml#publish_{{ project.name }}_{{ package.name }}_dry_run
4343

4444
publish_{{ project.name }}_{{ package.name }}_dry_run:
@@ -56,7 +56,11 @@ publish_{{ project.name }}_{{ package.name }}_dry_run:
5656
- "upm-ci~/packages/*.tgz"
5757
dependencies:
5858
- .yamato/project-pack.yml#pack_{{ project.name }}
59-
- .yamato/project-tests.yml#validate_{{ package.name }}_{{ test_platforms.first.name }}_{{ validation_editor }}
59+
{% for editor in project.test_editors -%}
60+
{% for platform in test_platforms -%}
61+
- .yamato/project-publish.yml#validate_{{ package.name }}_{{ platform.name }}_{{ editor }}
62+
{% endfor -%}
63+
{% endfor -%}
6064

6165
{% endfor -%}
6266
{% endif -%}

0 commit comments

Comments
 (0)