File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change 28
28
run : |
29
29
images=""
30
30
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
33
41
done;
34
42
echo images="[${images%?}]" >> $GITHUB_OUTPUT
35
43
echo main=${images%%,*} >> $GITHUB_OUTPUT
You can’t perform that action at this time.
0 commit comments