fix(actions): update macOS build workflow to conditionally name signed artifacts based on notarization status
All checks were successful
Test macOS Build Action / test-macos-build (push) Successful in 43m39s

This commit is contained in:
Ozgur 2025-04-14 22:38:41 +02:00
parent 0ca3867164
commit 64226b067c
No known key found for this signature in database
GPG Key ID: 66CDF27505A35546

View File

@ -198,7 +198,7 @@ jobs:
uses: actions/upload-artifact@v3
if: steps.sign-and-notarize.outputs.signed != 'none'
with:
name: LuckyWorld-macOS-Signed
name: ${{ steps.sign-and-notarize.outputs.notarized == 'true' && 'LuckyWorld-macOS-Signed-Notarized' || 'LuckyWorld-macOS-Signed' }}
path: ${{ steps.sign-and-notarize.outputs.package-path }}
retention-days: 30