Skip to content

Commit cc56155

Browse files
committed
sign all
1 parent 63e454d commit cc56155

File tree

9 files changed

+9
-3
lines changed

9 files changed

+9
-3
lines changed

.github/workflows/build.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,17 @@ concurrency:
1313
jobs:
1414
build_mojave:
1515
name: Zip and Upload Binaries
16-
runs-on: macos-15
16+
runs-on: macos-26
1717
permissions:
1818
contents: write
1919
steps:
2020
- uses: actions/checkout@v4
21+
- uses: apple-actions/import-codesign-certs@8f3fb608891dd2244cdab3d69cd68c0d37a7fe93
22+
with:
23+
p12-file-base64: ${{ secrets.CERTIFICATES_P12 }}
24+
p12-password: ${{ secrets.CERTIFICATES_P12_PASSWORD }}
25+
- name: Clean, strip, and sign binaries
26+
run: python3 ci.py
2127
- name: Set up Python
2228
uses: actions/setup-python@v5
2329
with:

Generate-DMG.command

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ DMG_VOLNAME: str = "OpenCore Patcher Resources (Root Patching)"
1414
DMG_SIZE: str = "4096"
1515
DMG_FORMAT: str = "UDRO"
1616
DMG_PASSPHRASE: str = "password"
17-
SIGNING_IDENTITY: str = "OpenCore Legacy Patcher Software Signing"
17+
SIGNING_IDENTITY: str = "Hackdoc Signing"
1818

1919

2020
class GenerateDiskImage:
Binary file not shown.
-4.28 KB
Binary file not shown.

ci.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
# Configurable options
1212

13-
IDENTITY = "OpenCore Legacy Patcher Software Signing"
13+
IDENTITY = "Hackdoc Signing"
1414
TARGET_DIR = Path("Universal-Binaries")
1515
UNUSED = [
1616
# Mojave and Catalina non-Metal Patches

0 commit comments

Comments
 (0)