Commit 6bb8876 1 parent 06a72fd commit 6bb8876 Copy full SHA for 6bb8876
File tree 3 files changed +4
-11
lines changed
3 files changed +4
-11
lines changed Original file line number Diff line number Diff line change 80
80
bash build_scripts/${{ runner.os }}/2_deploy.sh
81
81
--cert_pssw='${{ secrets.WIN_CERTIFICATE_PSSW }}'
82
82
--cert_id='${{ secrets.MACOS_CERT_ID }}'
83
- --notarization_user='prova '
84
- --notarization_passw='contropropva '
85
- --notarization_team='controcontroprova '
83
+ --notarization_user='${{ secrets.MACOS_NOTARIZATION_USER }} '
84
+ --notarization_pssw='${{ secrets.MACOS_NOTARIZATION_PSSW }} '
85
+ --notarization_team='${{ secrets.MACOS_NOTARIZATION_TEAM_ID }} '
86
86
87
87
- name : Upload RelightLab Portable
88
88
uses : actions/upload-artifact@v4
Original file line number Diff line number Diff line change @@ -41,15 +41,13 @@ case $i in
41
41
NOTARIZE=true
42
42
fi
43
43
shift # past argument=value
44
- ;;
44
+ ;;
45
45
-np=* |--notarization_pssw=* )
46
46
NOTAR_PASSWORD=" ${i#* =} "
47
- echo $NOTAR_PASSWORD
48
47
shift # past argument=value
49
48
;;
50
49
-nt=* |--notarization_team=* )
51
50
NOTAR_TEAM_ID=" ${i#* =} "
52
- echo $NOTAR_TEAM_ID
53
51
shift # past argument=value
54
52
;;
55
53
* )
@@ -69,7 +67,6 @@ if [ "$SIGN" = true ] ; then
69
67
fi
70
68
71
69
if [ " $NOTARIZE " = true ] ; then
72
- echo " $SCRIPTS_PATH /internal/2c_notarize_appbundle.sh -i=$INSTALL_PATH -nu=$NOTAR_USER -nt=$NOTAR_TEAM_ID -np=$NOTAR_PASSWORD "
73
70
bash $SCRIPTS_PATH /internal/2c_notarize_appbundle.sh -i=$INSTALL_PATH -nu=$NOTAR_USER -nt=$NOTAR_TEAM_ID -np=$NOTAR_PASSWORD
74
71
75
72
echo " ======= AppBundle Notarized ======="
Original file line number Diff line number Diff line change @@ -22,12 +22,10 @@ case $i in
22
22
;;
23
23
-nt=* |--notarization_team=* )
24
24
NOTAR_TEAM_ID=" ${i#* =} "
25
- echo $NOTAR_TEAM_ID
26
25
shift # past argument=value
27
26
;;
28
27
-np=* |--notarization_pssw=* )
29
28
NOTAR_PASSWORD=" ${i#* =} "
30
- echo $NOTAR_PASSWORD
31
29
shift # past argument=value
32
30
;;
33
31
* )
@@ -36,8 +34,6 @@ case $i in
36
34
esac
37
35
done
38
36
39
- echo " xcrun notarytool store-credentials 'notarytool-profile' --apple-id $NOTAR_USER --team-id $NOTAR_TEAM_ID --password $NOTAR_PASSWORD "
40
-
41
37
xcrun notarytool store-credentials " notarytool-profile" --apple-id $NOTAR_USER --team-id $NOTAR_TEAM_ID --password $NOTAR_PASSWORD
42
38
43
39
ditto -c -k --keepParent " $INSTALL_PATH /$APPNAME " " $INSTALL_PATH /notarization.zip"
You can’t perform that action at this time.
0 commit comments