@@ -383,22 +383,13 @@ jobs:
383
383
name : ${{ matrix.artifact-name }}
384
384
path : ${{ matrix.executable-path }} # path expected by installbuilder
385
385
386
- - name : unzip mac notarized bundle
387
- working-directory : ${{ matrix.executable-path }}
388
- run : |
389
- apt install unzip
390
- unzip ${{ matrix.artifact-name }}.zip
391
- rm ${{ matrix.artifact-name }}.zip
392
- if : matrix.os == 'macos-12'
393
-
394
386
# zip artifacts do not mantain executable permission
395
387
- name : Make executable
396
388
run : chmod -v +x ${{ matrix.executable-path }}${{ env.PROJECT_NAME }}*
397
389
if : matrix.os == 'ubuntu-20.04'
398
390
399
391
- name : Rename executable to Arduino_Create_Agent
400
392
run : mv -v ${{ matrix.executable-path }}${{ env.PROJECT_NAME }}${{ matrix.extension }} ${{ matrix.executable-path }}Arduino_Create_Agent${{ matrix.extension }}
401
- if : matrix.os != 'macos-12'
402
393
403
394
- name : Rename executable to Arduino_Create_Agent_cli
404
395
run : mv -v ${{ matrix.executable-path }}${{ env.PROJECT_NAME }}_cli${{ matrix.extension }} ${{ matrix.executable-path }}Arduino_Create_Agent_cli${{ matrix.extension }}
@@ -411,10 +402,6 @@ jobs:
411
402
run : echo "${{ secrets.INSTALLER_CERT_WINDOWS_PFX }}" | base64 --decode > ${{ env.INSTALLER_CERT_WINDOWS_PFX}}
412
403
if : matrix.os == 'windows-2019'
413
404
414
- - name : Save macos signing certificate to file
415
- run : echo "${{ secrets.INSTALLER_CERT_MAC_P12 }}" | base64 --decode > ${{ env.INSTALLER_CERT_MAC_P12 }}
416
- if : matrix.os == 'macos-12'
417
-
418
405
# installbuilder reads the env vars with certs paths and use it to sign the installer.
419
406
- name : Launch Bitrock installbuilder
420
407
run : |
0 commit comments