Skip to content

Commit 1a54714

Browse files
committed
testing yml and notarization
1 parent a50a249 commit 1a54714

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

.github/workflows/BuildRelight.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
submodules: true
2222
- name: Setup MSVC
2323
uses: ilammy/msvc-dev-cmd@v1
24+
2425
- name: Set CodeSign Certificate macOS
2526
if: runner.os == 'macOS' && env.MAC_CERT != null
2627
uses: apple-actions/import-codesign-certs@v2
@@ -79,9 +80,9 @@ jobs:
7980
bash build_scripts/${{ runner.os }}/2_deploy.sh
8081
--cert_pssw='${{ secrets.WIN_CERTIFICATE_PSSW }}'
8182
--cert_id='${{ secrets.MACOS_CERT_ID }}'
82-
--notarization_user='${{ secrets.MACOS_NOTARIZATION_USER }}'
83-
--notarization_passw='${{ secrets.MACOS_NOTARIZATION_PSSW }}'
84-
--notarization_team='${{ secrets.MACOS_NOTARIZATION_TEAM_ID }}'
83+
--notarization_user='prova'
84+
--notarization_passw='contropropva'
85+
--notarization_team='controcontroprova'
8586
8687
- name: Upload RelightLab Portable
8788
uses: actions/upload-artifact@v4

build_scripts/macOS/2_deploy.sh

+2
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,12 @@ case $i in
4444
;;
4545
-np=*|--notarization_pssw=*)
4646
NOTAR_PASSWORD="${i#*=}"
47+
echo $PASSWORD
4748
shift # past argument=value
4849
;;
4950
-nt=*|--notarization_team=*)
5051
NOTAR_TEAM_ID="${i#*=}"
52+
echo $NOTAR_TEAM_ID
5153
shift # past argument=value
5254
;;
5355
*)

build_scripts/macOS/internal/2c_notarize_appbundle.sh

+4
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,12 @@ case $i in
2222
;;
2323
-nt=*|--notarization_team=*)
2424
NOTAR_TEAM_ID="${i#*=}"
25+
echo $NOTAR_TEAM_ID
2526
shift # past argument=value
2627
;;
2728
-np=*|--notarization_pssw=*)
2829
NOTAR_PASSWORD="${i#*=}"
30+
echo $NOTAR_PASSWORD
2931
shift # past argument=value
3032
;;
3133
*)
@@ -34,6 +36,8 @@ case $i in
3436
esac
3537
done
3638

39+
echo "xcrun notarytool store-credentials 'notarytool-profile' --apple-id $NOTAR_USER --team-id $NOTAR_TEAM_ID --password $NOTAR_PASSWORD"
40+
3741
xcrun notarytool store-credentials "notarytool-profile" --apple-id $NOTAR_USER --team-id $NOTAR_TEAM_ID --password $NOTAR_PASSWORD
3842

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

0 commit comments

Comments
 (0)