From 02b26d1a724122cb40e16689e782f95c93eae1a6 Mon Sep 17 00:00:00 2001 From: Caleb Hearon Date: Sat, 7 Dec 2024 12:20:35 -0500 Subject: [PATCH] sign whole directory --- .github/workflows/prebuild.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/prebuild.yaml b/.github/workflows/prebuild.yaml index b27e130d3..0792d33b2 100644 --- a/.github/workflows/prebuild.yaml +++ b/.github/workflows/prebuild.yaml @@ -181,9 +181,10 @@ jobs: npm test - name: Sign the executable - uses: indygreg/apple-code-sign-action@v1 - with: - input_path: build/Release/canvas.node + run: | + for file in $(ls build/Release); + do codesign --deep --force --sign - build/Release/$file; + done; - name: Make bundle id: make_bundle