This commit is contained in:
Ty 2025-01-30 13:07:43 -05:00
parent ef5d5c780b
commit 2879d13c18
No known key found for this signature in database
GPG Key ID: A0C3085FE2160BCF
1 changed files with 5 additions and 2 deletions

View File

@ -147,11 +147,14 @@ jobs:
run: make -j$(getconf _NPROCESSORS_ONLN) unittests
- name: Prepare Build Artifacts
run: mv build/pcsx2*/PCSX2.app Build.app
run: |
echo "The current pwd is: $(pwd)"
mv build/pcsx2*/PCSX2.app Build.app
echo "This dir contains: $(ls)"
- name: Sign binary
if: ${{ inputs.sign }}
uses: lando/code-sign-action@v2
uses: lando/code-sign-action@v3
with:
file: "Build.app"
certificate-data: ${{ secrets.APPLE_CERT_DATA }}