diff options
Diffstat (limited to 'integration/src/main/scripts/release/releasePhase.sh')
-rwxr-xr-x | integration/src/main/scripts/release/releasePhase.sh | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/integration/src/main/scripts/release/releasePhase.sh b/integration/src/main/scripts/release/releasePhase.sh index e606ffb5..fd8397ff 100755 --- a/integration/src/main/scripts/release/releasePhase.sh +++ b/integration/src/main/scripts/release/releasePhase.sh @@ -374,12 +374,23 @@ release_phase_13() { } release_phase_14() { - echo "Updating snapshots on policy/drools-applications, policy/gui . . ." + echo "Updating snapshots on policy/drools-applications, policy/gui and updating release data file . . ." bumpSnapshots.sh \ -d "$release_data_file" \ -l "$repo_location" \ -i "$issue_id" - echo "Updated snapshots on policy/drools-applications, policy/gui" + updateRefs.sh \ + -f \ + -d "$release_data_file" \ + -l "$repo_location" \ + -r "policy/parent" + generateCommit.sh \ + -l "$repo_location" \ + -r "policy/parent" \ + -i "$issue_id" \ + -e "update release data in policy/parent" \ + -m "updated release data in policy/parent" + echo "Updated snapshots on policy/drools-applications, policy/gui and updated release data file" } case "$release_phase" in |