Skip to content

Commit ef7eaab

Browse files
authored
fix: include processing of image verions into env. vars (#515)
Signed-off-by: Ondrej Dockal <[email protected]>
1 parent 56c882b commit ef7eaab

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/sso-e2e-nightly-windows.yaml

+7
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,11 @@ on:
5151
description: 'Podman virtualization provider'
5252
type: 'string'
5353
required: true
54+
images_version:
55+
default: 'BUILDER="v0.0.3",PODMAN="v0.0.3",RUNNER="v0.0.3"'
56+
description: 'Testing images versions, no spaces'
57+
type: 'string'
58+
required: true
5459

5560
jobs:
5661
windows:
@@ -95,6 +100,8 @@ jobs:
95100
'{for (i=1; i<=NF; i++) {split($i, kv, "="); print "PODMAN_"kv[1]"="kv[2]}}' >> $GITHUB_ENV
96101
echo "${{ github.event.inputs.ext_repo_options || env.DEFAULT_EXT_REPO_OPTIONS }}" | awk -F ',' \
97102
'{for (i=1; i<=NF; i++) {split($i, kv, "="); print "EXT_"kv[1]"="kv[2]}}' >> $GITHUB_ENV
103+
echo "${{ github.event.inputs.images_version || env.DEFAULT_IMAGES_VERSIONS }}" | awk -F ',' \
104+
'{for (i=1; i<=NF; i++) {split($i, kv, "="); print "PDE2E_"kv[1]"="kv[2]}}' >> $GITHUB_ENV
98105
99106
- name: Create instance
100107
run: |

0 commit comments

Comments
 (0)