Skip to content

Commit

Permalink
fix: include processing of image verions into env. vars (#515)
Browse files Browse the repository at this point in the history
Signed-off-by: Ondrej Dockal <odockal@redhat.com>
  • Loading branch information
odockal authored Jan 15, 2025
1 parent 56c882b commit ef7eaab
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/sso-e2e-nightly-windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ on:
description: 'Podman virtualization provider'
type: 'string'
required: true
images_version:
default: 'BUILDER="v0.0.3",PODMAN="v0.0.3",RUNNER="v0.0.3"'
description: 'Testing images versions, no spaces'
type: 'string'
required: true

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

0 comments on commit ef7eaab

Please sign in to comment.