File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 9
9
10
10
MacOs :
11
11
runs-on : macos-13
12
- environment : Release
13
12
steps :
14
13
- uses : actions/checkout@v4
15
14
- uses : actions/setup-java@v4
@@ -26,14 +25,20 @@ jobs:
26
25
./mvnw clean package --batch-mode --no-transfer-progress
27
26
- run : |
28
27
$JAVA_HOME/bin/jpackage @target/jpackage-macos.args --type dmg
28
+ - name : Notarize Release Build
29
+ uses : lando/notarize-action@v2
30
+ with :
31
+ product-path : target/distr/macos/*.dmg
32
+ appstore-connect-username : ${{ secrets.MACOS_NOTARIZATION_USERNAME }}
33
+ appstore-connect-password : ${{ secrets.MACOS_NOTARIZATION_PASSWORD }}
34
+ appstore-connect-team-id : ${{ secrets.MACOS_NOTARIZATION_TEAM_ID }}
29
35
- uses : softprops/action-gh-release@v2
30
36
with :
31
37
draft : true
32
38
files : target/distr/macos/*.dmg
33
39
34
40
Windows :
35
41
runs-on : windows-2019
36
- environment : Release
37
42
steps :
38
43
- uses : actions/checkout@v4
39
44
- uses : actions/setup-java@v4
You can’t perform that action at this time.
0 commit comments