diff --git a/Telegram/build/release.py b/Telegram/build/release.py
index 0cc07905e..83429b191 100644
--- a/Telegram/build/release.py
+++ b/Telegram/build/release.py
@@ -163,6 +163,12 @@ if not os.path.isdir(local_folder):
 local_folder = local_folder + '/'
 
 files = []
+files.append({
+  'local': 'sources',
+  'remote': 'tdesktop-' + version + '-full.tar.gz',
+  'mime': 'application/x-gzip',
+  'label': 'Source code (tar.gz, full)',
+})
 files.append({
   'local': 'tsetup.' + version_full + '.exe',
   'remote': 'tsetup.' + version_full + '.exe',
@@ -205,12 +211,6 @@ files.append({
   'mime': 'application/octet-stream',
   'label': 'Linux 64 bit: Binary',
 })
-files.append({
-  'local': 'sources',
-  'remote': 'tdesktop-' + version + '-full.tar.gz',
-  'mime': 'application/x-gzip',
-  'label': 'Source code (tar.gz, full)',
-})
 
 r = requests.get(url + 'repos/telegramdesktop/tdesktop/releases/tags/v' + version)
 if r.status_code == 404: