File tree Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -202,7 +202,7 @@ jobs:
202202 run : |
203203 pkgbuild --install-location /Applications --component build/ntsc-rs-standalone/ntsc-rs.app --min-os-version $MACOSX_DEPLOYMENT_TARGET --compression latest build/ntsc-rs-macos-standalone.pkg
204204 pkgbuild --install-location /Library/OFX/Plugins --component build/ntsc-rs-openfx/NtscRs.ofx.bundle --min-os-version $MACOSX_DEPLOYMENT_TARGET --compression latest build/ntsc-rs-macos-openfx.pkg
205- pkgbuild --install-location "/Library/Application Support/Adobe/Common/Plug-ins/7.0/MediaCore" --component build/ntsc-rs-afterfx/ntsc-rs.plugin --min-os-version $MACOSX_DEPLOYMENT_TARGET --compression latest build/ntsc-rs-macos-afterfx.pkg
205+ pkgbuild --install-location "/Library/Application Support/Adobe/Common/Plug-ins/7.0/MediaCore" --component build/ntsc-rs-afterfx/ntsc-rs.plugin --min-os-version $MACOSX_DEPLOYMENT_TARGET --scripts assets/install_scripts -- compression latest build/ntsc-rs-macos-afterfx.pkg
206206
207207 - name : Archive .pkg installers
208208 uses : actions/upload-artifact@v4
Original file line number Diff line number Diff line change 1+ #! /usr/bin/env sh
2+ set -e
3+
4+ PLUGIN_BUNDLE=" $DSTROOT /ntsc-rs.plugin"
5+
6+ if [ -d " $PLUGIN_BUNDLE " ]; then
7+ echo " Signing After Effects plugin with ad-hoc signature..."
8+ /usr/bin/codesign --force --deep --sign - " $PLUGIN_BUNDLE "
9+ echo " After Effects plugin signed successfully."
10+ else
11+ echo " After Effects plugin not found at expected location. Skipping signing."
12+ exit 1
13+ fi
14+
15+ exit 0
You can’t perform that action at this time.
0 commit comments