mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-08 07:27:29 -06:00
Fix missing asc file in Linux build artifacts
The asc was created for the AppImage, but never uploaded as an artifact. Fixes CURA-11087
This commit is contained in:
parent
5552b5ced3
commit
6106ade3af
3 changed files with 18 additions and 2 deletions
|
@ -38,7 +38,7 @@ def build_appimage(dist_path, version, appimage_filename):
|
|||
"""
|
||||
generate_appimage_builder_config(dist_path, version, appimage_filename)
|
||||
create_appimage()
|
||||
sign_appimage(dist_path, appimage_filename)
|
||||
sign_appimage(appimage_filename)
|
||||
|
||||
|
||||
def generate_appimage_builder_config(dist_path, version, appimage_filename):
|
||||
|
@ -85,7 +85,7 @@ def create_appimage():
|
|||
raise RuntimeError(f"The AppImageTool command returned non-zero: {result}")
|
||||
|
||||
|
||||
def sign_appimage(dist_path, appimage_filename):
|
||||
def sign_appimage(appimage_filename):
|
||||
command = ["gpg", "--yes", "--armor", "--detach-sig", appimage_filename]
|
||||
result = subprocess.call(command)
|
||||
if result != 0:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue