Skip to content

Commit

Permalink
Fix typo in default target app name
Browse files Browse the repository at this point in the history
  • Loading branch information
mberlanda committed Oct 17, 2022
1 parent fda4a8f commit 68bd1b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/release-worker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ IFS=$'\n\t'
tag="$1"
# This env var allows to re-use the same docker cached
# layers when building images for different environments
app="${TARGET_APP:-cheidelcoriera}"
app="${TARGET_APP:-cheidelacoriera}"

docker build -t "${app}:${tag}" -f Dockerfile.worker .
docker tag "${app}:${tag}" "registry.heroku.com/${app}/worker"
Expand Down
2 changes: 1 addition & 1 deletion bin/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ IFS=$'\n\t'
tag="$1"
# This env var allows to re-use the same docker cached
# layers when building images for different environments
app="${TARGET_APP:-cheidelcoriera}"
app="${TARGET_APP:-cheidelacoriera}"

docker build -t "${app}:${tag}" -f Dockerfile.web .
docker tag "${app}:${tag}" "registry.heroku.com/${app}/web"
Expand Down

0 comments on commit 68bd1b4

Please sign in to comment.