Skip to content

Commit 08c56a2

Browse files
committed
fix: bug with build args in project configuration
1 parent e4f6484 commit 08c56a2

File tree

1 file changed

+16
-3
lines changed

1 file changed

+16
-3
lines changed

partials/projects_build_args.yaml

+16-3
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,28 @@
3737
loop: "{{ buildarg_items[1:] }}"
3838
when: "'build_args' in project.1 and project.1.build_args.keys() | length > 1"
3939

40-
- name: Containers with more than one build argument
40+
- name: Containers with two build arguments
4141
set_fact:
4242
projects: >-
4343
{{
4444
projects | default([]) + [
4545
project.1 | combine({
46-
'name': project.0 + '-' + item | join('-'),
46+
'name': project.0 + '-' + (item | join('-')),
4747
'build_args': dict(project.1.build_args.keys() | zip(item))
4848
})] | list
4949
}}
5050
loop: "{{ combos }}"
51-
when: "'build_args' in project.1 and project.1.build_args.keys() | length > 1"
51+
when: "'build_args' in project.1 and project.1.build_args.keys() | length == 2"
52+
53+
- name: Containers with more than two build arguments
54+
set_fact:
55+
projects: >-
56+
{{
57+
projects | default([]) + [
58+
project.1 | combine({
59+
'name': project.0 + '-' + (item | flatten | join('-')),
60+
'build_args': dict(project.1.build_args.keys() | zip(item | flatten))
61+
})] | list
62+
}}
63+
loop: "{{ combos }}"
64+
when: "'build_args' in project.1 and project.1.build_args.keys() | length > 2"

0 commit comments

Comments
 (0)