| Index: releaseAutomation.py | 
| diff --git a/releaseAutomation.py b/releaseAutomation.py | 
| index b346d5e1e4311f9fbfb14fbe5b5bcfaf8758a2b9..c7eaf6b77d8ed16b45ae5906d0a45b6daefa46dd 100644 | 
| --- a/releaseAutomation.py | 
| +++ b/releaseAutomation.py | 
| @@ -279,14 +279,15 @@ def run(baseDir, platforms, version, keyFile, downloads_repo): | 
| downloads_repo, | 
| 'adblockplus-{}-source.tgz'.format(release_identifier), | 
| ) | 
| -    create_sourcearchive(baseDir, archive_path) | 
| -    downloads.append(archive_path) | 
| try: | 
| release_commit(baseDir, extension_name, version, target_platforms) | 
| except subprocess.CalledProcessError as e: | 
| if not (re_release and 'nothing changed' in e.output): | 
| raise | 
|  | 
| +    create_sourcearchive(baseDir, archive_path) | 
| +    downloads.append(archive_path) | 
| + | 
| release_tag(baseDir, release_identifier, extension_name) | 
|  | 
| # Now add the downloads and commit | 
|  |