-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: avoid hardcoding omnija signing format
- Loading branch information
Showing
4 changed files
with
57 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -361,7 +361,7 @@ def _get_omnija_signing_files(file_list): | |
return files | ||
|
||
|
||
async def sign_omnija_with_autograph(config, sign_config, app_path): | ||
async def sign_omnija_with_autograph(config, sign_config, app_path, fmt): | ||
"""Sign the omnija file specified using autograph. | ||
This function overwrites from_ | ||
|
@@ -393,7 +393,7 @@ async def sign_omnija_with_autograph(config, sign_config, app_path): | |
await sign_file_with_autograph( | ||
sign_config, | ||
from_, | ||
"autograph_omnija", | ||
fmt, | ||
to=signed_out, | ||
keyid=OMNIJA_AUTOGRAPH_KEY_ID[sign_config.get("release_type", "dep")], | ||
extension_id="[email protected]", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters