Skip to content

Commit

Permalink
chore: remove docker build output from tag
Browse files Browse the repository at this point in the history
  • Loading branch information
bethesque committed Jan 5, 2020
1 parent c9bce22 commit e072d03
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion script/next-docker-tag.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
source script/docker-functions

DOCKER_IMAGE="pactfoundation/pact-broker"
docker_build_bundle_base
docker_build_bundle_base >/dev/null 2>&1
gem_version=$(get_pact_broker_version)
existing_tags=$(wget -q https://registry.hub.docker.com/v1/repositories/${DOCKER_IMAGE}/tags -O - | jq -r .[].name)
existing_release_numbers_for_current_gem_version=$(echo "$existing_tags" | grep "${gem_version}-" | sed 's/'${gem_version}'-//g')
Expand Down
1 change: 1 addition & 0 deletions script/release.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
set -e

export TAG=$(script/next-docker-tag.sh)
echo "Releasing tag ${TAG}"
bundle exec rake generate_changelog
git add CHANGELOG.md && git commit -m "chore(changelog): update for ${TAG}"
echo "Tagging version ${TAG}"
Expand Down

0 comments on commit e072d03

Please sign in to comment.