Skip to content

Commit 9cb0b38

Browse files
committed
fix: images for CI workflow too
Ports over what we already have in v1
1 parent 80eefc6 commit 9cb0b38

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/main.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,16 @@ jobs:
2828
run: |
2929
images=""
3030
for n in $name; do
31-
tags=$(curl -su ":" https://containers.intersystems.com/v2/intersystems/${n}/tags/list | jq -r '.tags[]' | cut -d '-' -f1 | uniq)
32-
for tag in $tags; do images+='"'${n}:${tag}'",'; done
31+
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]\./' | sort | uniq)
32+
for tag in $tags
33+
do
34+
# Skip irishealth-community due to bad interaction with ZPM document type
35+
if test "$n" = "irishealth-community" && test "$tag" = "2023.3"
36+
then
37+
continue
38+
fi
39+
images+='"'${n}:${tag}'",';
40+
done
3341
done;
3442
echo images="[${images%?}]" >> $GITHUB_OUTPUT
3543
echo main=${images%%,*} >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)