@@ -88,25 +88,25 @@ jobs:
88
88
kayobe overcloud container image build ${{ github.event.inputs.regexes }} --push
89
89
env :
90
90
KAYOBE_VAULT_PASSWORD : ${{ secrets.KAYOBE_VAULT_PASSWORD }}
91
- if : github.event.inputs.overcloud
91
+ if : github.event.inputs.overcloud == 'true'
92
92
93
93
- name : Display the overcloud container image tag
94
94
run : |
95
95
echo "$(cat ~/kolla_tag)"
96
- if : github.event.inputs.overcloud
96
+ if : github.event.inputs.overcloud == 'true'
97
97
98
98
- name : Get built overcloud container images
99
99
run : |
100
100
sudo docker image ls --filter "reference=ark.stackhpc.com/stackhpc-dev/*:$(cat ~/kolla_tag)" > overcloud-container-images
101
- if : github.event.inputs.overcloud
101
+ if : github.event.inputs.overcloud == 'true'
102
102
103
103
- name : Upload overcloud-container-images artifact
104
104
uses : actions/upload-artifact@v3
105
105
with :
106
106
name : Overcloud container images
107
107
path : overcloud-container-images
108
108
retention-days : 7
109
- if : github.event.inputs.overcloud
109
+ if : github.event.inputs.overcloud == 'true'
110
110
111
111
- name : Build and push kolla seed images
112
112
run : |
@@ -115,25 +115,25 @@ jobs:
115
115
kayobe seed container image build --push
116
116
env :
117
117
KAYOBE_VAULT_PASSWORD : ${{ secrets.KAYOBE_VAULT_PASSWORD }}
118
- if : github.event.inputs.seed
118
+ if : github.event.inputs.seed == 'true'
119
119
120
120
- name : Display the seed container image tag
121
121
run : |
122
122
echo "$(cat ~/kolla_tag)"
123
- if : github.event.inputs.seed
123
+ if : github.event.inputs.seed == 'true'
124
124
125
125
- name : Get built seed container images
126
126
run : |
127
127
sudo docker image ls --filter "reference=ark.stackhpc.com/stackhpc-dev/*:$(cat ~/kolla_tag)" > seed-container-images
128
- if : github.event.inputs.seed
128
+ if : github.event.inputs.seed == 'true'
129
129
130
130
- name : Upload seed-container-images artifact
131
131
uses : actions/upload-artifact@v3
132
132
with :
133
133
name : Seed container images
134
134
path : seed-container-images
135
135
retention-days : 7
136
- if : github.event.inputs.seed
136
+ if : github.event.inputs.seed == 'true'
137
137
138
138
- name : Prune local Kolla container images
139
139
run : |
0 commit comments