Skip to content

Commit b151134

Browse files
committed
Fix upload path
1 parent 562e524 commit b151134

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/deployment-ea.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -395,14 +395,16 @@ jobs:
395395
with:
396396
# tbn = to-be-notarized
397397
name: JabRef-macOS-tbn-${{ matrix.os }}
398-
path: build/distribution
398+
path: jabgui/build/distribution
399399
compression-level: 0 # no compression
400400
- name: Upload to GitHub workflow artifacts store
401401
if: (steps.checksecrets.outputs.secretspresent != 'YES') || (github.ref != 'refs/heads/main')
402402
uses: actions/upload-artifact@v4
403403
with:
404404
name: JabRef-${{ matrix.os }}
405-
path: build/distribution
405+
path: |
406+
jabgui/build/distribution
407+
jabkit/build/distribution
406408
compression-level: 0 # no compression
407409
notarize: # outsourced in a separate job to be able to rerun if this fails for timeouts
408410
name: macOS notarization

0 commit comments

Comments
 (0)