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 b8d913ef64
commit ef688796d0
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)