Skip to content

Commit 37c4182

Browse files
authored
Merge pull request #5175 from OpenShot/fix-about-us
About Us - Release Info
2 parents c903e53 + e8c5437 commit 37c4182

File tree

6 files changed

+274
-250
lines changed

6 files changed

+274
-250
lines changed

installer/deploy.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ def main():
103103

104104
# Get version info
105105
openshot_qt_version = version_info.get('openshot-qt', {}).get('VERSION', 'N/A')
106+
release_git_sha = version_info.get('openshot-qt', {}).get('CI_COMMIT_SHA', 'N/A')
106107

107108
# Verify branch names are all the same (across the 3 repos)
108109
original_git_branch = ''
@@ -300,7 +301,8 @@ def main():
300301
auth=auth,
301302
data={
302303
"version": openshot_qt_version,
303-
"changelog": log_title + combined_log_markdown
304+
"changelog": log_title + combined_log_markdown,
305+
"sha": release_git_sha
304306
})
305307
if not r.ok:
306308
raise Exception(

0 commit comments

Comments
 (0)