Skip to content

Commit 6bb8876

Browse files
committed
passw -> pass
1 parent 06a72fd commit 6bb8876

File tree

3 files changed

+4
-11
lines changed

3 files changed

+4
-11
lines changed

.github/workflows/BuildRelight.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,9 @@ jobs:
8080
bash build_scripts/${{ runner.os }}/2_deploy.sh
8181
--cert_pssw='${{ secrets.WIN_CERTIFICATE_PSSW }}'
8282
--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 }}'
8686
8787
- name: Upload RelightLab Portable
8888
uses: actions/upload-artifact@v4

build_scripts/macOS/2_deploy.sh

+1-4
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,13 @@ case $i in
4141
NOTARIZE=true
4242
fi
4343
shift # past argument=value
44-
;;
44+
;;
4545
-np=*|--notarization_pssw=*)
4646
NOTAR_PASSWORD="${i#*=}"
47-
echo $NOTAR_PASSWORD
4847
shift # past argument=value
4948
;;
5049
-nt=*|--notarization_team=*)
5150
NOTAR_TEAM_ID="${i#*=}"
52-
echo $NOTAR_TEAM_ID
5351
shift # past argument=value
5452
;;
5553
*)
@@ -69,7 +67,6 @@ if [ "$SIGN" = true ] ; then
6967
fi
7068

7169
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"
7370
bash $SCRIPTS_PATH/internal/2c_notarize_appbundle.sh -i=$INSTALL_PATH -nu=$NOTAR_USER -nt=$NOTAR_TEAM_ID -np=$NOTAR_PASSWORD
7471

7572
echo "======= AppBundle Notarized ======="

build_scripts/macOS/internal/2c_notarize_appbundle.sh

-4
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,10 @@ case $i in
2222
;;
2323
-nt=*|--notarization_team=*)
2424
NOTAR_TEAM_ID="${i#*=}"
25-
echo $NOTAR_TEAM_ID
2625
shift # past argument=value
2726
;;
2827
-np=*|--notarization_pssw=*)
2928
NOTAR_PASSWORD="${i#*=}"
30-
echo $NOTAR_PASSWORD
3129
shift # past argument=value
3230
;;
3331
*)
@@ -36,8 +34,6 @@ case $i in
3634
esac
3735
done
3836

39-
echo "xcrun notarytool store-credentials 'notarytool-profile' --apple-id $NOTAR_USER --team-id $NOTAR_TEAM_ID --password $NOTAR_PASSWORD"
40-
4137
xcrun notarytool store-credentials "notarytool-profile" --apple-id $NOTAR_USER --team-id $NOTAR_TEAM_ID --password $NOTAR_PASSWORD
4238

4339
ditto -c -k --keepParent "$INSTALL_PATH/$APPNAME" "$INSTALL_PATH/notarization.zip"

0 commit comments

Comments
 (0)