Skip to content

Commit ad3890d

Browse files
authored
Merge pull request #23 from swissbuechi/add-ghcr.io-support
Added support for ghcr.io public images
2 parents 37137ef + f78ee60 commit ad3890d

File tree

3 files changed

+24
-1
lines changed

3 files changed

+24
-1
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ jobs:
5555
- `docker.io/somecompany/theimage:x.x.x` (ie, docker.io/grafana/grafana:10.0.1)
5656
- `mcr.microsoft.com/part/theimage:x.x.x` (ie, mcr.microsoft.com/azure-cli:2.50.0)
5757
- `gcr.io/project/image:x.x.x` (ie, gcr.io/cadvisor/cadvisor:v0.47.1)
58+
- `ghcr.io/username/image:x.x.x` (ie, ghcr.io/swissbuechi/one-time-secret:1.0.10)
5859

5960
## what for:
6061

@@ -65,6 +66,7 @@ jobs:
6566
- dockerhub
6667
- microsoft mcr
6768
- google gcr
69+
- github packages ghcr (public images)
6870
- other? open an issue or open pr
6971

7072
## what does it look like

VERSION

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

bin/pincher.sh

+21
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,27 @@ do
126126
[ -n "$latest_version_in_registry" ] && versions_magic
127127
done
128128

129+
# github ghcr
130+
versions_ghcr=$(yq '.services[].image' ./*compose*.y* | grep ghcr.io | sort | uniq)
131+
for version in $versions_ghcr
132+
do
133+
latest_version_in_registry=""
134+
135+
[[ $version =~ ghcr.io\/(.*)\:(.*) ]]
136+
image=${BASH_REMATCH[1]}
137+
v_rematched=${BASH_REMATCH[2]}
138+
echo "image: $image, v: $v_rematched"
139+
140+
# TODO: Private repos require authentication with a PAT or github token
141+
# ghcr_token=$(echo $GITHUB_TOKEN | base64)
142+
143+
ghcr_token=$(curl -s https://ghcr.io/token\?scope\="repository:$image:pull" | jq -r .token)
144+
latest_version_in_registry="$(curl -H "Authorization: Bearer ${ghcr_token}" -s https://ghcr.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)"
145+
146+
# the magic
147+
[ -n "$latest_version_in_registry" ] && versions_magic
148+
done
149+
129150
# considerations "how to edit/contribute"
130151
# add each new registry in a separated block loop as per the existing ones
131152
# authentication happens via env_vars in the action block if required

0 commit comments

Comments
 (0)