Fix sync docker images latest tag
This commit is contained in:
parent
c2cb4fac10
commit
9dc2155e63
1 changed files with 1 additions and 0 deletions
1
.github/workflows/sync-docker-images.yaml
vendored
1
.github/workflows/sync-docker-images.yaml
vendored
|
@ -23,3 +23,4 @@ jobs:
|
|||
EXCLUDED_TAGS="1.7.9-alpine v1.0.0-beta.392 v1.0.0-beta.404 v1.0.0-beta.704 v1.0.0-rc1 v1.7.9-alpine"
|
||||
EXCLUDED_REGEX=$(echo $EXCLUDED_TAGS | sed 's/ /|/g')
|
||||
diff <(crane ls traefik) <(crane ls ghcr.io/traefik/traefik) | grep '^<' | awk '{print $2}' | while read -r tag; do [[ "$tag" =~ ^($EXCLUDED_REGEX)$ ]] || (echo "Processing image: traefik:$tag"; crane cp "traefik:$tag" "ghcr.io/traefik/traefik:$tag"); done
|
||||
crane cp traefik:latest ghcr.io/traefik/traefik:latest
|
||||
|
|
Loading…
Reference in a new issue