Skip to content

Commit 8591d84

Browse files
kopporcalixtusSiedlerchr
authored
Skip Mac OS build if secret not present (#7591)
* Skip Mac OS build if secret not present * Update deployment.yml * Update deployment.yml * Create deployment.yml Co-authored-by: Carl Christian Snethlage <[email protected]> Co-authored-by: Christoph <[email protected]>
1 parent 1cb6679 commit 8591d84

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/deployment.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -74,14 +74,14 @@ jobs:
7474
restore-keys: |
7575
${{ runner.os }}-gradle-
7676
- name: Setup OSX key chain on OSX
77-
if: matrix.os == 'macos-latest'
77+
if: ${{ matrix.os == 'macos-latest' && github.event.pull_request.head.repo.full_name == github.repository }}
7878
uses: apple-actions/import-codesign-certs@v1
7979
with:
8080
p12-file-base64: ${{ secrets.OSX_SIGNING_CERT }}
8181
p12-password: ${{ secrets.OSX_CERT_PWD }}
8282
keychain-password: jabref
8383
- name: Setup OSX key chain on OSX for app id cert
84-
if: matrix.os == 'macos-latest'
84+
if: ${{ matrix.os == 'macos-latest' && github.event.pull_request.head.repo.full_name == github.repository }}
8585
uses: apple-actions/import-codesign-certs@v1
8686
with:
8787
p12-file-base64: ${{ secrets.OSX_SIGNING_CERT_APPLICATION }}
@@ -94,7 +94,7 @@ jobs:
9494
run: ./gradlew -i -PprojVersion="${{ steps.gitversion.outputs.AssemblySemVer }}" -PprojVersionInfo="${{ steps.gitversion.outputs.InformationalVersion }}" jpackage
9595
shell: bash
9696
- name: Resign app image for OSX and build dmg
97-
if: matrix.os == 'macos-latest'
97+
if: ${{ matrix.os == 'macos-latest' && github.event.pull_request.head.repo.full_name == github.repository }}
9898
shell: bash
9999
run: |
100100
codesign --entitlements buildres/mac/jabref.entitlements --options runtime -vvv -f --sign "Developer ID Application: Tobias Diez (W2PU6LW5U5)" build/distribution/JabRef.app/Contents/runtime/Contents/MacOS/libjli.dylib

0 commit comments

Comments
 (0)