Skip to content
This repository has been archived by the owner on Aug 13, 2024. It is now read-only.

Commit

Permalink
Align deployment for base images (closes #132)
Browse files Browse the repository at this point in the history
  • Loading branch information
BenFradet committed Jun 13, 2019
1 parent 35a4257 commit 8525346
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions .travis/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,11 @@ curl -X GET \
https://${docker_repo}/v2/auth > $file

cd $project
# except for the base image, there is one folder per image version
if [[ "${project}" != base* ]]; then
if [ -d "${release}" ]; then
cd $release
else
echo "Warning! Release ${project} ${release} doesn't have an associated folder"
exit 1
fi
if [ -d "${release}" ]; then
cd $release
else
echo "Warning! Release ${project} ${release} doesn't have an associated folder"
exit 1
fi

img_tag="snowplow/${project}:${release}"
Expand Down

0 comments on commit 8525346

Please sign in to comment.