From b6149f404480957671d65e7150644cdea2ea7cb7 Mon Sep 17 00:00:00 2001 From: Robbe Sneyders Date: Wed, 18 Oct 2023 16:33:56 +0200 Subject: [PATCH] Fix explorer build script for DockerHub (#531) The release pipeline fails on building the explorer script. It was not properly updated for our switch to DockerHub. Works now: https://hub.docker.com/r/fndnt/data_explorer --- scripts/build_explorer.sh | 4 ++-- scripts/tag_components.sh | 2 +- scripts/tag_explorer.sh | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/build_explorer.sh b/scripts/build_explorer.sh index 8e401ddc5..37650226e 100755 --- a/scripts/build_explorer.sh +++ b/scripts/build_explorer.sh @@ -23,8 +23,8 @@ if [ -z "${tag}" ]; then fi # Set github repo information -namespace="ml6team" -repo="fondant" +namespace="fndnt" +repo="ml6team/fondant" # Get the explorer directory scripts_dir=$( cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P ) diff --git a/scripts/tag_components.sh b/scripts/tag_components.sh index 84d66b193..0684d8b3d 100755 --- a/scripts/tag_components.sh +++ b/scripts/tag_components.sh @@ -25,7 +25,7 @@ if [ -z "${old_tag}" ] || [ -z "${new_tag}" ]; then fi # Set github repo information -namespace="ml6team" +namespace="fndnt" # Get the component directory scripts_dir=$( cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P ) diff --git a/scripts/tag_explorer.sh b/scripts/tag_explorer.sh index e8665cd64..c5cea32fb 100755 --- a/scripts/tag_explorer.sh +++ b/scripts/tag_explorer.sh @@ -25,7 +25,7 @@ if [ -z "${old_tag}" ] || [ -z "${new_tag}" ]; then fi # Set github repo information -namespace="ml6team" +namespace="fndnt" # Get the explorer directory scripts_dir=$( cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P )