Skip to content

Commit 393dbd3

Browse files
authored
Merge pull request #333 from espressif/fix/installer_builds
Fix of the Installer builds
2 parents ae91f05 + cf07c61 commit 393dbd3

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/build-installer.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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 }}

.github/workflows/build-offline-installer.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
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
@@ -26,7 +26,9 @@ jobs:
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:
@@ -50,7 +52,6 @@ jobs:
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:

0 commit comments

Comments
 (0)