Skip to content

Commit

Permalink
Checking jar filelist format
Browse files Browse the repository at this point in the history
  • Loading branch information
QuincyCantu committed Sep 5, 2024
1 parent 1ba5fbb commit 64d754e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,9 @@ jobs:
INSTALL_CERT_BASE64: ${{ secrets.CP_APPLE_INSTALL_CERT_BASE64 }}
APP_CERT_PASSWORD: ${{ secrets.CP_APPLE_DEV_CERT_PASSWORD }}
INSTALL_CERT_PASSWORD: ${{ secrets.CP_APPLE_INSTALL_CERT_PASSWORD }}
- name: Specialized signing
run: mac-signing.sh

- name: Package jar as pkg
run: >
jpackage
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/mac-signing.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
jar -xf pace-0.1.1-SNAPSHOT-exe.jar BOOT-INF/lib/*

for filename in /BOOT-INF/lib/*; do
fileList=$(jar -tf filename | grep .dylib)
echo fileList
done

0 comments on commit 64d754e

Please sign in to comment.