Belphemur/issue1786 #8
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Test Installer Build (No Sign) | |
| on: | |
| push: | |
| paths: | |
| - "Installer/**" | |
| pull_request: | |
| paths: | |
| - "Installer/**" | |
| jobs: | |
| build-installer-no-sign: | |
| runs-on: windows-2025 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Install Inno Setup | |
| run: winget install --id=JRSoftware.InnoSetup --exact --source winget --scope machine --accept-package-agreements --accept-source-agreements | |
| shell: pwsh | |
| - name: Setup .NET 9.0 | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: "9.0.x" | |
| cache: true | |
| cache-dependency-path: Directory.Packages.props | |
| - name: Build Project and Installer | |
| run: .\\Make.bat Nightly /SCertum=.github/scripts/dummy_sign.bat | |
| shell: cmd |