-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsigner_code.txt
More file actions
28 lines (18 loc) · 1.26 KB
/
Copy pathsigner_code.txt
File metadata and controls
28 lines (18 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Lorsqu'une nouvelle version doit etre Build :
- Mettre a jour la monté de version et enlever le mode debug dans app_config.py
- Aller dans le dossier build\windows.
- Lancer le fichier build_windows.bat
Tester manuellement l'executable qui se trouve :
*\build\windows\dist\linkedin_automation\linkedin_automation.exe
Si tout fonctionne bien il faut signer l'executable :
- insérer la clé de signature
- Utiliser l'invite de commande windows.
- Aller à : cd "C:\Program Files (x86)\Windows Kits\10\bin\10.0.26100.0\x64"
Puis lancer la commande suivante pour signer l'executable du pyinstaller:
- signtool sign /n "Nab Data (Boulmerka Nabil EI)" /tr http://timestamp.globalsign.com/tsa/r6advanced1 /td SHA256 /fd SHA256 "C:\Users\boulm\Python_file\setting_automation\build\windows\dist\linkedin_automation\linkedin_automation.exe"
Une fois le code signer, il faut créer l'executable Inno Setup :
- Ouvrir Inno Setup avec le fichier : *setup\linkedin_automation.iss
- Run
Puis signer l'installateur Inno Setup:
- Utiliser l'invite de commande windows.
- signtool sign /n "Nab Data (Boulmerka Nabil EI)" /tr http://timestamp.globalsign.com/tsa/r6advanced1 /td SHA256 /fd SHA256 "C:\Users\boulm\Python_file\setting_automation\setup\output\LinkedInAutomationBotInstaller_v1.exe"