We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72444f3 commit aa46bd1Copy full SHA for aa46bd1
.github/workflows/ci.yml
@@ -78,7 +78,7 @@ jobs:
78
versions=$(docker images lukechilds/bitcoind --format "{{.Tag}}" | grep amd64 | cut -d- -f1)
79
for version in $versions; do
80
tags=$(docker images lukechilds/bitcoind --format "{{.Tag}}" | grep $version- | sed 's/^/lukechilds\/bitcoind\:&/')
81
- if [[ $version = $LATEST_TAG ]]; then
+ if [[ "${version}" = "v${LATEST_TAG}" ]]; then
82
docker manifest create lukechilds/bitcoind:latest $tags
83
docker manifest push lukechilds/bitcoind:latest
84
fi
0 commit comments