diff --git a/.github/workflows/images.yml b/.github/workflows/images.yml index 37ddc3a2..8f70b115 100644 --- a/.github/workflows/images.yml +++ b/.github/workflows/images.yml @@ -11,8 +11,8 @@ on: env: name: | - irishealth-community iris-community + irishealth-community jobs: images: @@ -26,8 +26,16 @@ jobs: run: | images="" for n in $name; do - tags=$(curl -su ":" https://containers.intersystems.com/v2/intersystems/${n}/tags/list | jq -r '.tags[]' | awk '!/(-linux)|([1-4]-preview)/' | awk '!/\.[1-4]\.0\./' | uniq) - for tag in $tags; do images+='"'${n}:${tag}'",'; done + tags=$(curl -su ":" https://containers.intersystems.com/v2/intersystems/${n}/tags/list | jq -r '.tags[]' | awk '!/(-linux)|([1-4]-preview)|(-em)|(-cd)/' | awk '!/\.[1-4]\./' | uniq) + for tag in $tags + do + # Skip irishealth-community due to bad interaction with ZPM document type + if test "$n" = "irishealth-community" && test "$tag" = "2023.3" + then + continue + fi + images+='"'${n}:${tag}'",'; + done done; echo images="[${images%?}]" >> $GITHUB_OUTPUT echo main=${images%%,*} >> $GITHUB_OUTPUT \ No newline at end of file