Skip to content

Commit 38cd6b7

Browse files
authored
Merge pull request #3 from sbe-arg/feature/gcr
feat: add support for google gcr.io
2 parents 08a4597 + c2da83f commit 38cd6b7

File tree

3 files changed

+22
-3
lines changed

3 files changed

+22
-3
lines changed

README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,9 @@ jobs:
5252
- your compose files must be on your repo root.
5353
- your compose files must match '\*compose\*.yaml' or '\*compose\*.yml'
5454
- your images in compose files must include the full registry:
55-
- docker.io/somecompany/theimage:x.x.x
56-
- mcr.microsoft.com/part/theimage:x.x.x
55+
- `docker.io/somecompany/theimage:x.x.x` (ie, docker.io/grafana/grafana:10.0.1)
56+
- `mcr.microsoft.com/part/theimage:x.x.x` (ie, mcr.microsoft.com/azure-cli:2.50.0)
57+
- `gcr.io/project/image:x.x.x` (ie, gcr.io/cadvisor/cadvisor:v0.47.1)
5758

5859
## what for:
5960

@@ -63,6 +64,7 @@ jobs:
6364

6465
- dockerhub
6566
- microsoft mcr
67+
- google gcr
6668
- other? open an issue or open pr
6769

6870
## what does it look like

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v0.1.0
1+
v0.1.1

bin/pincher.sh

+17
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,23 @@ do
109109
[ -n "$latest_version_in_registry" ] && versions_magic
110110
done
111111

112+
# google gcr
113+
versions_gcr=$(yq '.services[].image' ./*compose*.y* | grep gcr.io | sort | uniq)
114+
for version in $versions_gcr
115+
do
116+
latest_version_in_registry=""
117+
118+
[[ $version =~ gcr.io\/(.*)\:(.*) ]]
119+
image=${BASH_REMATCH[1]}
120+
v_rematched=${BASH_REMATCH[2]}
121+
echo "image: $image, v: $v_rematched"
122+
123+
latest_version_in_registry="$(curl -s https://gcr.io/v2/$image/tags/list | jq -r '.tags[]' | sort -V -t. -k1,1 -k2,2 -k3,3 | grep -oP '^v?[0-9]+\.[0-9]+\.[0-9]+$' | tail -n 1)"
124+
125+
# the magic
126+
[ -n "$latest_version_in_registry" ] && versions_magic
127+
done
128+
112129
# considerations "how to edit/contribute"
113130
# add each new registry in a separated block loop as per the existing ones
114131
# authentication happens via env_vars in the action block if required

0 commit comments

Comments
 (0)