Compare commits
2 commits
25079958b1
...
a89aee26df
Author | SHA1 | Date | |
---|---|---|---|
a89aee26df | |||
31282ba7bc |
2 changed files with 1 additions and 21 deletions
|
@ -7,7 +7,7 @@ on:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '0 0 * * *'
|
- cron: '0 0 * * 0'
|
||||||
workflow_dispatch: {}
|
workflow_dispatch: {}
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
|
|
@ -1,20 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
LOCAL_IMAGE=$1
|
|
||||||
REMOTE_IMAGE=$2
|
|
||||||
|
|
||||||
# Vérifier si le nom de l'image a été fourni
|
|
||||||
if [[ -z "$LOCAL_IMAGE" || -z "$REMOTE_IMAGE" ]]; then
|
|
||||||
echo "Usage: $0 <LOCAL_IMAGE> <REMOTE_IMAGE>"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
REMOTE_IMAGE_DIGEST=$(curl -s "https://hub.docker.com/v2/repositories/$REMOTE_IMAGE/tags/latest/" | jq .digest)
|
|
||||||
|
|
||||||
RESULT=$(docker image inspect "$LOCAL_IMAGE" | jq '[[.[0].RepoDigests.[] | split("@")].[] | last] | unique | contains(['"$REMOTE_IMAGE_DIGEST"'])')
|
|
||||||
|
|
||||||
if [[ "$RESULT" == "true" ]]; then
|
|
||||||
exit 0
|
|
||||||
else
|
|
||||||
exit 1
|
|
||||||
fi
|
|
Loading…
Reference in a new issue