We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d93609 commit 54e8365Copy full SHA for 54e8365
1 file changed
.github/workflows/stackhpc-container-image-build.yml
@@ -154,6 +154,21 @@ jobs:
154
with:
155
path: src/kayobe-config
156
157
+ - name: Get Kolla-Ansible version
158
+ id: get-kolla-ansible-version
159
+ run: |
160
+ output=$(grep -wrh stackhpc_kolla_ansible_source_version: src/kayobe-config/etc/kayobe/ | head -1 | awk {'print $2'})
161
+ echo kolla_ansible_version=$output | tee -a "$GITHUB_OUTPUT"
162
+ if: inputs.service-group
163
+
164
+ - name: Checkout Kolla-Ansible
165
+ uses: actions/checkout@v6
166
+ with:
167
+ repository: stackhpc/kolla-ansible
168
+ ref: ${{ steps.get-kolla-ansible-version.outputs.kolla_ansible_version }}
169
+ path: src/kolla-ansible
170
171
172
- name: Make sure dockerd is running and test Docker
173
run: |
174
docker ps
0 commit comments