Skip to content

Commit

Permalink
Rename branch and remove -umask suffix
Browse files Browse the repository at this point in the history
Other stemcell/os-image branches will not use the suffix and this keeps
us more consistent with those and other artifacts.

[#152664357](https://www.pivotaltracker.com/story/show/152664357)
  • Loading branch information
dpb587-pivotal committed Nov 15, 2017
1 parent 722a287 commit 23a22f2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ci/configure.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#!/usr/bin/env bash

fly -t production set-pipeline \
-p bosh-agent:2.47.x-umask \
-p bosh-agent:2.47.x \
-c ci/pipeline.yml \
--load-vars-from <(lpass show -G "bosh-agent concourse secrets" --notes) \
--var agent_branch=2.47.x-umask \
--var agent_branch=2.47.x \
--var version_bump='patch' \
--var agent_version_key='agent-2.47-current-version' \
--var agent_initial_version=2.47.0
2 changes: 1 addition & 1 deletion ci/tasks/assert-version-aligns.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ fi

echo "will only continue if version to promote matches $version_must_match ..."

if ! [[ "${semver}-umask" =~ $version_must_match ]]; then
if ! [[ $semver =~ $version_must_match ]]; then
echo "version $semver DOES NOT ALIGN with branch $git_branch -- promote step canceled!"
exit 1
fi
Expand Down

0 comments on commit 23a22f2

Please sign in to comment.