Skip to content

Commit

Permalink
Update data explorer scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
RobbeSneyders committed Oct 12, 2023
1 parent da5dedf commit 67ee03a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion scripts/build_explorer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ pushd "$explorer_dir"

BASENAME=${explorer_dir%/}
BASENAME=${BASENAME##*/}
full_image_name=ghcr.io/${namespace}/${BASENAME}:${tag}
full_image_name=${namespace}/${BASENAME}:${tag}

echo "building $full_image_name"

Expand Down
4 changes: 2 additions & 2 deletions scripts/tag_components.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ for dir in "$component_dir"/*/; do

BASENAME=${dir%/}
BASENAME=${BASENAME##*/}
old_image_name=ghcr.io/${namespace}/${BASENAME}:${old_tag}
new_image_name=ghcr.io/${namespace}/${BASENAME}:${new_tag}
old_image_name=${namespace}/${BASENAME}:${old_tag}
new_image_name=${namespace}/${BASENAME}:${new_tag}
echo "$old_image_name"
echo "$new_image_name"

Expand Down
4 changes: 2 additions & 2 deletions scripts/tag_explorer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ pushd "$explorer_dir"

BASENAME=${explorer_dir%/}
BASENAME=${BASENAME##*/}
old_image_name=ghcr.io/${namespace}/${BASENAME}:${old_tag}
new_image_name=ghcr.io/${namespace}/${BASENAME}:${new_tag}
old_image_name=${namespace}/${BASENAME}:${old_tag}
new_image_name=${namespace}/${BASENAME}:${new_tag}
echo "$old_image_name"
echo "$new_image_name"

Expand Down

0 comments on commit 67ee03a

Please sign in to comment.