Skip to content

Commit

Permalink
reduce
Browse files Browse the repository at this point in the history
  • Loading branch information
KenCorma committed Sep 24, 2024
1 parent f135d75 commit 473d630
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .github/actions/build/macos/comfy/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,9 @@ runs:
shell: bash
## TODO: Both of these need to be a more manageable list
run: |
cd ./assets/python2/python/lib
liblist=("libpython3.12.dylib" "python3.12/lib-dynload/_crypt.cpython-312-darwin.so")
binlist=("uv" "uvx" "python3.12")
for file in $liblist; do codesign --sign 6698D856280DC1662A8E01E5B63428CB6D6651BB --force --timestamp --options runtime --entitlements ../../../../scripts/entitlements.mac.plist "$file"; done
cd ../
cd bin
for file in $binlist; do codesign --sign 6698D856280DC1662A8E01E5B63428CB6D6651BB --force --timestamp --options runtime --entitlements ../../../../scripts/entitlements.mac.plist "$file"; done
cd ./assets/python2/python/
filelist=("lib/libpython3.12.dylib" "lib/python3.12/lib-dynload/_crypt.cpython-312-darwin.so" "bin/uv" "bin/uvx" "bin/python3.12")
for file in ${filelist[@]}; do codesign --sign 6698D856280DC1662A8E01E5B63428CB6D6651BB --force --timestamp --options runtime --entitlements ../../../scripts/entitlements.mac.plist "$file"; done
- name: rezip
shell: sh
run: |
Expand Down

0 comments on commit 473d630

Please sign in to comment.