File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -36,23 +36,23 @@ jobs:
3636 build-installer-online :
3737 name : Build Online Installer
3838 if : inputs.installer_type == 'online'
39- uses : espressif/idf-installer/.github/workflows/build-online-installer.yml@main
39+ uses : espressif/idf-installer/.github/workflows/build-online-installer.yml
4040 with :
4141 online_installer_version : ${{ inputs.online_installer_version }}
4242 secrets : inherit
4343
4444 build-installer-offline :
4545 name : Build Offline Installer
4646 if : inputs.installer_type == 'offline'
47- uses : espressif/idf-installer/.github/workflows/build-offline-installer.yml@main
47+ uses : espressif/idf-installer/.github/workflows/build-offline-installer.yml
4848 with :
4949 esp_idf_version : ${{ inputs.esp_idf_version}}
5050 secrets : inherit
5151
5252 build-installer-ide :
5353 name : Build IDE Installer
5454 if : inputs.installer_type == 'espressif-ide'
55- uses : espressif/idf-installer/.github/workflows/build-espressif-ide-installer.yml@main
55+ uses : espressif/idf-installer/.github/workflows/build-espressif-ide-installer.yml
5656 with :
5757 esp_idf_version : ${{ inputs.esp_idf_version }}
5858 espressif_ide_version : ${{ inputs.espressif_ide_version }}
Original file line number Diff line number Diff line change 1717 runs-on : windows-latest
1818 steps :
1919 - name : Checkout repository
20- uses : actions/checkout@v4
20+ uses : actions/checkout@v5
2121
2222 - name : Set up Python 3.11
2323 uses : actions/setup-python@v5
2626
2727 - name : Install Inno Setup Download plugin
2828 shell : pwsh
29- run : Invoke-WebRequest -Uri https://github.com/espressif/inno-download-plugin/releases/download/v1.5.1/idpsetup-1.5.1.exe -OutFile idpsetup.exe; .\idpsetup.exe /SILENT; Sleep 5
29+ run : |
30+ Write-Output $(pwd)
31+ Invoke-WebRequest -Uri https://github.com/espressif/inno-download-plugin/releases/download/v1.5.1/idpsetup-1.5.1.exe -OutFile idpsetup.exe; .\idpsetup.exe /SILENT
3032
3133 - name : Build Installer
3234 env :
5052 run : |
5153 echo $(Get-ItemProperty -Path .\build\esp-idf-tools-setup-offline-signed.exe | Select-Object -ExpandProperty Length) > variables.txt
5254 echo "Instaler size from variable is $(Get-Content variables.txt)"
53-
5455 - name : Upload artifacts of installer size
5556 uses : actions/upload-artifact@v4
5657 with :
You can’t perform that action at this time.
0 commit comments