Skip to content

Commit

Permalink
Merge pull request #461 from intersystems/image-update-2024.1
Browse files Browse the repository at this point in the history
fix: Dockerfile uses 2024.1
  • Loading branch information
isc-tleavitt authored Apr 17, 2024
2 parents 9113a83 + 9cb0b38 commit 88220c8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,16 @@ jobs:
run: |
images=""
for n in $name; do
tags=$(curl -su ":" https://containers.intersystems.com/v2/intersystems/${n}/tags/list | jq -r '.tags[]' | cut -d '-' -f1 | 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]\./' | sort | 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
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BASE=containers.intersystems.com/intersystems/irishealth-community:2023.1.0.229.0
ARG BASE=containers.intersystems.com/intersystems/irishealth-community:2024.1
FROM ${BASE}

ARG REGISTRY=https://pm.community.intersystems.com
Expand Down

0 comments on commit 88220c8

Please sign in to comment.