File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change 74
74
NO_CERT_INSTALL : " ask_certificates_install=CS" # linux
75
75
CHOICE_CERT_INSTALL : " ask_certificates_install=CC" # win,mac:(ff,chrome)
76
76
CREATE_OSX_BUNDLED_MG : 1
77
+ INSTALLER_CERT_WINDOWS_PASSWORD : ${{ secrets.INSTALLER_CERT_WINDOWS_PASSWORD }}
78
+ INSTALLER_CERT_WINDOWS_PFX : " /tmp/ArduinoCerts2020.pfx"
77
79
78
80
strategy :
79
81
fail-fast : false # if one os is failing continue nonetheless
@@ -124,9 +126,13 @@ jobs:
124
126
- name : Rename executable to Arduino_Create_Bridge
125
127
run : mv ${{ matrix.executable-path }}arduino-create-agent${{ matrix.extension }} ${{ matrix.executable-path }}Arduino_Create_Bridge${{ matrix.extension }}
126
128
127
- - name : Save license to file
129
+ - name : Save InstallBuilder license to file
128
130
run : echo "${{ secrets.INSTALLER_LICENSE }}" > /tmp/license.xml
129
131
132
+ - name : Save Win signing certificate to file
133
+ run : echo "${{ secrets.INSTALLER_CERT_WINDOWS_PFX }}" | base64 --decode > /tmp/ArduinoCerts2020.pfx
134
+ if : matrix.operating-system == 'windows-latest'
135
+
130
136
# win(edge),mac(safari) -> CERT_INSTALL and win,mac:(ff,chrome) -> CHOICE_CERT_INSTALL
131
137
- name : Launch Bitrock installbuilder-20 with CERT_INSTALL && CHOICE_CERT_INSTALL
132
138
run : |
You can’t perform that action at this time.
0 commit comments