Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tools/build-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ for target in $TARGETS; do
esac
done

if [ -z "${TARGETS##* docker *}" ]; then
if [ -z "${TARGETS##* docker *}" ] || [ -z "${TARGETS##* docker}" ]; then
echo "Building Docker Images"
DOCKER_USER="elementsproject"
echo "Creating multi-platform images tagged as $VERSION and latest"
Expand All @@ -230,7 +230,7 @@ if [ -z "${TARGETS##* docker *}" ]; then
echo "Pushed multi-platform images tagged as $VERSION and latest"
fi

if [ -z "${TARGETS##* sign *}" ]; then
if [ -z "${TARGETS##* sign *}" ] || [ -z "${TARGETS##* sign}" ]; then
echo "Signing Release"
cd release/ || exit
sha256sum clightning-"$VERSION"-*.tar.* clightning-"$VERSION".zip > SHA256SUMS-"$VERSION"
Expand Down
Loading