diff --git a/.github/workflows/all_builds.yml b/.github/workflows/all_builds.yml index cdc1573b..8c50ad4a 100644 --- a/.github/workflows/all_builds.yml +++ b/.github/workflows/all_builds.yml @@ -155,6 +155,20 @@ jobs: zip -r9 "osx.zip" "osx_template.app/" cd .. + - name: Download rcedit.exe + uses: robinraju/release-downloader@v1 + if: matrix.platform == 'windows' + with: + repository: electron/rcedit + latest: true + fileName: rcedit-x64.exe + out-file-path: ${{ runner.tool_cache }}/rcedit + - name: Setup rcedit + if: matrix.platform == 'windows' + run: | + Rename-Item ${{ runner.tool_cache }}\rcedit\rcedit-x64.exe ${{ runner.tool_cache }}\rcedit\rcedit.exe + echo "${{ runner.tool_cache }}\rcedit" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append + - name: Export standalone GDRE Tools continue-on-error: true shell: pwsh