Sync the live folder after Nomulus rollback (#854)

* Sync the live folder after Nomulus rollback

To update the nomulus tool on corp desktop, the artifacts from the
rollback target release should be copied to the 'live' folder.

* Fix a test
This commit is contained in:
Weimin Yu 2020-10-29 16:21:56 -04:00 committed by GitHub
parent 5bba65835a
commit 83918e92b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 22 additions and 1 deletions

View file

@ -172,6 +172,9 @@ def _generate_steps(
rollback_steps.append(
steps.update_deploy_tags(gcs_client.project, env, target_release))
rollback_steps.append(
steps.sync_live_release(gcs_client.project, target_release))
return tuple(rollback_steps)