try fix-rpaths.py

This commit is contained in:
2024-09-08 14:28:45 -05:00
parent 03e4bf9b56
commit a4b1c7384d

View File

@@ -76,6 +76,13 @@ jobs:
with:
name: cboe-${{ matrix.os.name }}-${{ matrix.configuration }}-unsigned
path: '${{ github.workspace }}/build/cboe-${{ matrix.os.name }}-${{ matrix.configuration }}-unsigned.tar'
- name: Download fix-rpaths.py script
run: git clone https://gist.github.com/NQNStudios/7145bcf6621891f5176c8caa165d6b93
- name: Fix rpaths
run: |
'python 7145bcf6621891f5176c8caa165d6b93/fix-rpaths.py "build/Blades of Exile.app" && \
python 7145bcf6621891f5176c8caa165d6b93/fix-rpaths.py "build/BoE Scenario Editor.app" && \
python 7145bcf6621891f5176c8caa165d6b93/fix-rpaths.py "build/BoE Character Editor.app"'
- name: Codesign and notarize
run: './.github/workflows/scripts/mac/sign-apps.sh'
if: ${{ matrix.os.name == 'macos' }}