Merge pull request #181 from Sofie-Automation/Julusian-patch-1 #330
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: Build Windows | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| - 'release**' | |
| - 'test**' | |
| tags: | |
| - 'v**' | |
| jobs: | |
| build: | |
| name: Build windows binaries | |
| runs-on: windows-latest | |
| timeout-minutes: 20 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - name: Use Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: '24' | |
| cache: 'yarn' | |
| - name: Enable Corepack | |
| run: corepack enable | |
| - name: Prepare Environment | |
| run: yarn install --immutable | |
| env: | |
| CI: true | |
| - name: Run build | |
| env: | |
| CI: true | |
| PKG_CACHE_PATH: ${{ runner.temp }} | |
| run: | | |
| # try and avoid timeout errors | |
| yarn do:build-win32:ci | |
| - name: Sign executables | |
| shell: bash | |
| env: | |
| WINDOWS_CERTIFICATE: ${{ secrets.WINDOWS_CERTIFICATE }} | |
| run: | | |
| if [[ ! -z "$WINDOWS_CERTIFICATE" ]]; then | |
| # write certficate to file | |
| echo "$WINDOWS_CERTIFICATE" | base64 -d > certificate.pfx | |
| for FILE in deploy/*.exe; do | |
| echo "Trying to sign ${FILE}" | |
| # This path is a bit fragile, but necessary as no signtool is on the path. | |
| # If this path breaks, then find what versions of windows kits (under "Installed Windows SDKs") are installed in the updated runner image https://github.com/actions/runner-images#available-images | |
| 'C:/Program Files (x86)/Windows Kits/10/bin/10.0.26100.0/x86/signtool.exe' sign //fd SHA256 //f certificate.pfx //p "${{ secrets.WINDOWS_CERTIFICATE_PASSWORD }}" $FILE | |
| done | |
| else | |
| echo "No certificate found" | |
| fi | |
| - name: Verify build | |
| if: '!cancelled()' | |
| run: yarn verify:build-win32 | |
| env: | |
| CI: true | |
| - name: Upload artifacts | |
| if: '!cancelled()' | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: Windows | |
| path: deploy | |
| release: | |
| name: Create Release | |
| runs-on: ubuntu-latest | |
| if: startsWith(github.ref, 'refs/tags/') | |
| needs: | |
| - build | |
| permissions: | |
| contents: write | |
| steps: | |
| - name: Download artifact | |
| uses: actions/download-artifact@v7 | |
| with: | |
| name: Windows | |
| path: deploy | |
| - name: Create Release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| files: deploy/* | |
| prerelease: ${{ contains(github.ref, '-') }} | |
| fail_on_unmatched_files: true |