Skip to content

Commit

Permalink
Fix explorer build script for DockerHub (#531)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
RobbeSneyders authored Oct 18, 2023
1 parent ec60a36 commit b6149f4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions scripts/build_explorer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 )
Expand Down
2 changes: 1 addition & 1 deletion scripts/tag_components.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 )
Expand Down
2 changes: 1 addition & 1 deletion scripts/tag_explorer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 )
Expand Down

0 comments on commit b6149f4

Please sign in to comment.