mirror of
https://github.com/Retropex/docker-bitcoind-prebuilt.git
synced 2025-05-12 19:20:48 +02:00
Fix latest tag check
This commit is contained in:
parent
72444f39d2
commit
aa46bd1093
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@ -78,7 +78,7 @@ jobs:
|
||||
versions=$(docker images lukechilds/bitcoind --format "{{.Tag}}" | grep amd64 | cut -d- -f1)
|
||||
for version in $versions; do
|
||||
tags=$(docker images lukechilds/bitcoind --format "{{.Tag}}" | grep $version- | sed 's/^/lukechilds\/bitcoind\:&/')
|
||||
if [[ $version = $LATEST_TAG ]]; then
|
||||
if [[ "${version}" = "v${LATEST_TAG}" ]]; then
|
||||
docker manifest create lukechilds/bitcoind:latest $tags
|
||||
docker manifest push lukechilds/bitcoind:latest
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user