We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a59c124 commit 862e0cfCopy full SHA for 862e0cf
.github/workflows/bun-compile.yml
@@ -79,7 +79,9 @@ jobs:
79
- name: Sign binary
80
if: contains(matrix.target, 'darwin')
81
run: |
82
- codesign --force --options runtime --sign "Developer ID Application: Augment Code Inc" ${{ matrix.output }}
+ IDENTITY=$(security find-identity -v -p codesigning build.keychain | grep "Developer ID" | head -1 | sed 's/.*"\(.*\)".*/\1/')
83
+ echo "Signing with identity: $IDENTITY"
84
+ codesign --force --options runtime --sign "$IDENTITY" ${{ matrix.output }}
85
86
- name: Notarize binary
87
0 commit comments