@@ -326,7 +326,7 @@ jobs:
326326 run : |
327327 rsync -rt --chmod=Du=rwx,Dg=rx,Do=rx,Fu=rw,Fg=r,Fo=r --itemize-changes --stats --rsync-path="mkdir -p /var/www/builds.jabref.org/www/${{ steps.gitversion.outputs.branchName }} && rsync" -e 'C:\ProgramData\chocolatey\lib\rsync\tools\bin\ssh.exe -p 9922 -i sshkey -o StrictHostKeyChecking=no' jabls-cli/build/packages/${{ matrix.os }}/ [email protected] :/var/www/builds.jabref.org/www/${{ steps.gitversion.outputs.branchName }}/ || true 328328 - name : Upload jabgui to builds.jabref.org (linux, macOS)
329- if : ${{ (steps.diskspace.outputs.available == 'true') && (startsWith(matrix.os, 'macos') || startsWith(matrix.os, 'ubuntu')) }}
329+ if : ${{ (steps.diskspace.outputs.available == 'true') && (( startsWith(matrix.os, 'macos') && (needs.conditions.outputs.should-notarize != 'true') ) || startsWith(matrix.os, 'ubuntu')) }}
330330 shell : bash
331331 run : |
332332 rsync -rt --chmod=Du=rwx,Dg=rx,Do=rx,Fu=rw,Fg=r,Fo=r --itemize-changes --stats --rsync-path="mkdir -p /var/www/builds.jabref.org/www/${{ steps.gitversion.outputs.branchName }} && rsync" -e 'ssh -p 9922 -i sshkey -o StrictHostKeyChecking=no' jabgui/build/packages/${{ matrix.os }}/ [email protected] :/var/www/builds.jabref.org/www/${{ steps.gitversion.outputs.branchName }}/ || true @@ -375,12 +375,16 @@ jobs:
375375 runs-on : ubuntu-latest
376376 steps :
377377 - name : echo PR data
378+ env :
379+ PR_NUMBER : ${{ github.event.pull_request.number }}
380+ PR_URL : ${{ github.event.pull_request.html_url }}
381+ PR_BODY : ${{ github.event.pull_request.body }}
378382 run : |
379- echo "PR Number: ${{ github.event.pull_request.number }} "
380- echo "PR URL: ${{ github.event.pull_request.html_url }} "
383+ echo "PR Number: $PR_NUMBER "
384+ echo "PR URL: $PR_URL "
381385 cat <<EOF
382386 PR Body:
383- ${{ github.event.pull_request.body }}
387+ $PR_BODY
384388 EOF
385389 - name : Determine issue number
386390 id : get_issue_number
@@ -421,10 +425,6 @@ jobs:
421425 include :
422426 - os : macos-15
423427 displayName : macOS (ARM64)
424- suffix : ' _arm64'
425- - os : macos-15-intel # intel image
426- displayName : macOS
427- suffix : ' '
428428 runs-on : ${{ matrix.os }}
429429 steps :
430430 - name : Download from GitHub workflow artifacts store (macOS)
@@ -437,15 +437,15 @@ jobs:
437437 cd jabgui
438438 find . -type f
439439 xcrun notarytool store-credentials "notarytool-profile" --apple-id "[email protected] " --team-id "6792V39SK3" --password "${{ secrets.OSX_NOTARIZATION_APP_PWD }}" 440- xcrun notarytool submit packages/${{ matrix.os }}/JabRef-${{ needs.build.outputs.major }}.${{ needs.build.outputs.minor }}${{ matrix.suffix}}.dmg --keychain-profile "notarytool-profile" --wait
441- xcrun stapler staple packages/${{ matrix.os }}/JabRef-${{ needs.build.outputs.major }}.${{ needs.build.outputs.minor }}${{ matrix.suffix}}.dmg
440+ xcrun notarytool submit build/ packages/${{ matrix.os }}/JabRef-${{ needs.build.outputs.major }}.${{ needs.build.outputs.minor }}${{ matrix.suffix}}.dmg --keychain-profile "notarytool-profile" --wait
441+ xcrun stapler staple build/ packages/${{ matrix.os }}/JabRef-${{ needs.build.outputs.major }}.${{ needs.build.outputs.minor }}${{ matrix.suffix}}.dmg
442442 - name : Notarize pkg
443443 shell : bash
444444 run : |
445445 cd jabgui
446446 xcrun notarytool store-credentials "notarytool-profile" --apple-id "[email protected] " --team-id "6792V39SK3" --password "${{ secrets.OSX_NOTARIZATION_APP_PWD }}" 447- xcrun notarytool submit packages/${{ matrix.os }}/JabRef-${{ needs.build.outputs.major }}.${{ needs.build.outputs.minor }}${{ matrix.suffix}}.pkg --keychain-profile "notarytool-profile" --wait
448- xcrun stapler staple packages/${{ matrix.os }}/JabRef-${{ needs.build.outputs.major }}.${{ needs.build.outputs.minor }}${{ matrix.suffix}}.pkg
447+ xcrun notarytool submit build/ packages/${{ matrix.os }}/JabRef-${{ needs.build.outputs.major }}.${{ needs.build.outputs.minor }}${{ matrix.suffix}}.pkg --keychain-profile "notarytool-profile" --wait
448+ xcrun stapler staple build/ packages/${{ matrix.os }}/JabRef-${{ needs.build.outputs.major }}.${{ needs.build.outputs.minor }}${{ matrix.suffix}}.pkg
449449 - name : Upload to builds.jabref.org
450450 shell : bash
451451 run : |
0 commit comments