Skip to content

Commit

Permalink
Fix images push
Browse files Browse the repository at this point in the history
  • Loading branch information
jaroslav-fedor-swi committed Oct 25, 2024
1 parent 3816504 commit e703a7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -251,10 +251,10 @@ jobs:
docker_registry=$(sed -e 's,^https://,,' -e 's,/*$,,' <<< $DOCKER_REGISTRY)
for image in ${images[@]}; do
image_name="${IMAGE_PREFIX}${image}-arm64"
image_name="${IMAGE_PREFIX}${image}"
image_path="${docker_registry}/${DOCKER_NAMESPACE}/${image_name}"
docker tag "${image}" ${image_path}:v${full_version_number}-arm64
docker tag "${image}-arm64" ${image_path}:v${full_version_number}-arm64
if [[ "${{ inputs.dry_run }}" == "false" ]];
Expand Down

0 comments on commit e703a7b

Please sign in to comment.