Skip to content

Commit

Permalink
Remove signing step as the files are not present
Browse files Browse the repository at this point in the history
  • Loading branch information
younglim authored Aug 5, 2024
1 parent 4c1297b commit e13b851
Showing 1 changed file with 0 additions and 21 deletions.
21 changes: 0 additions & 21 deletions .github/workflows/image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,27 +69,6 @@ jobs:
- name: Install Purple dependencies for MacOS
run: |
./install_purple_dependencies.command
- name: Sign required binaries for MacOS
run: |
# Find a valid signing certificate in your keychain
CERTIFICATE=$(security find-identity -v -p codesigning -s - | tail -n +2 | grep -o '"[^"]*"' | sed 's/"//g')
# Paths to the binaries you want to sign
BINARIES=(
"./purple-a11y/node_modules/playwright/node_modules/fsevents/fsevents.node"
"./purple-a11y/node_modules/fsevents/fsevents.node"
)
# Loop through the binary paths and sign each one with a secure timestamp
for binary in "${BINARIES[@]}"; do
codesign --timestamp -s "$CERTIFICATE" "$binary"
if [ $? -eq 0 ]; then
echo "Successfully signed (with secure timestamp): $binary"
else
echo "Failed to sign: $binary"
fi
done
- name: Zip entire Purple folder (Mac)
run: |
Expand Down

0 comments on commit e13b851

Please sign in to comment.