diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fed83466..d6d6324c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,10 +33,14 @@ jobs: - name: build issrc run: | "set DELPHIXEROOT=$env:DELPHIXEROOT" | Out-File -Encoding ascii compilesettings.bat - "set ISSIGTOOL_KEY_FILE=${{github.workspace}}\home\bin\mykey.isprivatekey" | Out-File -NoNewline -Encoding ascii -Append compilesettings.bat + "set ISSIGTOOL_KEY_FILE=${{github.workspace}}\mykey.isprivatekey" | Out-File -NoNewline -Encoding ascii -Append compilesettings.bat "set DELPHIXEROOT=$env:DELPHIXEROOT" | Out-File -NoNewline -Encoding ascii ISHelp\ISHelpGen\compilesettings.bat "set HHCEXE=%ProgramFiles(x86)%\HTML Help Workshop\hhc.exe" | Out-File -NoNewline -Encoding ascii ISHelp\compilesettings.bat .\build.bat + - name: Clean up temporary files + if: always() + shell: bash + run: rm -rf mykey.isprivatekey - name: copy license.txt into all artifacts run: | copy license.txt Files @@ -56,7 +60,9 @@ jobs: uses: actions/upload-artifact@v4 with: name: ISHelp - path: ISHelp/Staging/ + path: | + ISHelp/Staging/ + ISHelp/Staging-dark/ - name: find mt.exe shell: bash run: | diff --git a/build-ce.bat b/build-ce.bat index 018373e9..de97dd03 100644 --- a/build-ce.bat +++ b/build-ce.bat @@ -120,7 +120,7 @@ echo Creating Inno Setup installer done call .\issig.bat sign output\innosetup-%VER%.exe if errorlevel 1 goto failed powershell.exe -NoProfile -Command "Write-Host -NoNewline 'SHA256 hash: '; (Get-FileHash -Algorithm SHA256 -Path output\innosetup-%VER%.exe).Hash.ToLower()" -if errorlevel 1 goto failed +rem ignoring error here echo All done! pause diff --git a/build.bat b/build.bat index 588ed8fb..42f8f88f 100644 --- a/build.bat +++ b/build.bat @@ -105,7 +105,7 @@ echo Creating Inno Setup installer done call .\issig.bat sign output\innosetup-%VER%.exe if errorlevel 1 goto failed powershell.exe -NoProfile -Command "Write-Host -NoNewline 'SHA256 hash: '; (Get-FileHash -Algorithm SHA256 -Path output\innosetup-%VER%.exe).Hash.ToLower()" -if errorlevel 1 goto failed +rem ignoring error here echo All done! pause