Skip to content

Commit 02b26d1

Browse files
committed
sign whole directory
1 parent d1cf190 commit 02b26d1

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/prebuild.yaml

+4-3
Original file line numberDiff line numberDiff line change
@@ -181,9 +181,10 @@ jobs:
181181
npm test
182182
183183
- name: Sign the executable
184-
uses: indygreg/apple-code-sign-action@v1
185-
with:
186-
input_path: build/Release/canvas.node
184+
run: |
185+
for file in $(ls build/Release);
186+
do codesign --deep --force --sign - build/Release/$file;
187+
done;
187188
188189
- name: Make bundle
189190
id: make_bundle

0 commit comments

Comments
 (0)