Skip to content

Commit 51a2604

Browse files
committed
overcloud-host-image-build.yml: fix Output image tag of the builder
1 parent 4deb6f0 commit 51a2604

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/overcloud-host-image-build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,9 @@ jobs:
7575
- name: Output image tag of the builder
7676
id: builder_image_tag
7777
run: |
78-
echo image_tag=$(grep stackhpc_rocky_9_overcloud_host_image_version: etc/kayobe/pulp-host-image-versions.yml | awk '{print $2}') >> $GITHUB_OUTPUT
78+
image_tag="$(grep stackhpc_rocky_9_overcloud_host_image_version: etc/kayobe/pulp-host-image-versions.yml | awk '{print $2}')"
79+
echo "image_tag=${image_tag}" | tee -a "$GITHUB_OUTPUT"
80+
working-directory: ${{ github.workspace }}/src/kayobe-config
7981

8082
- name: Determine OpenStack release
8183
id: openstack_release

0 commit comments

Comments
 (0)