Use variables set in current_versions.sh as part of

script/release-binaries.sh

When writing the release-binary bash script I didn't use the right
variables in current_versions.sh but I fixed those values as part of the
script itself.

Signed-off-by: Gianluca Arbezzano <gianarb92@gmail.com>
This commit is contained in:
Gianluca Arbezzano
2020-11-23 15:21:40 +01:00
parent 587e65181a
commit f8cf83f121
2 changed files with 6 additions and 6 deletions

View File

@ -4,25 +4,25 @@ source ./current_versions.sh
go run cmd/getbinariesfromquay/main.go \
-binary-to-copy /usr/bin/hegel \
-image docker://quay.io/tinkerbell/hegel:sha-c17b512f \
-image ${TINKERBELL_TINK_HEGEL_IMAGE} \
-program hegel
go run cmd/getbinariesfromquay/main.go \
-binary-to-copy /usr/bin/boots \
-image docker://quay.io/tinkerbell/boots:sha-e81a291c \
-image ${TINKERBELL_TINK_BOOTS_IMAGE} \
-program boots
go run cmd/getbinariesfromquay/main.go \
-binary-to-copy /usr/bin/tink-worker \
-image docker://quay.io/tinkerbell/tink-worker:sha-0e8e5733 \
-image ${TINKERBELL_TINK_WORKER_IMAGE} \
-program tink-worker
go run cmd/getbinariesfromquay/main.go \
-binary-to-copy /usr/bin/tink-server \
-image docker://quay.io/tinkerbell/tink:sha-0e8e5733 \
-image ${TINKERBELL_TINK_SERVER_IMAGE} \
-program tink-server
go run cmd/getbinariesfromquay/main.go \
-binary-to-copy /usr/bin/tink \
-image docker://quay.io/tinkerbell/tink-cli:sha-0e8e5733 \
-image ${TINKERBELL_TINK_CLI_IMAGE} \
-program tink