Add Arm64 binaries to installer #44
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: CI | |
| on: [push, pull_request] | |
| permissions: | |
| contents: read | |
| jobs: | |
| macos: | |
| name: Build on Windows | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Download Updater package | |
| uses: dawidd6/action-download-artifact@v11 | |
| with: | |
| workflow: build.yml | |
| branch: arm64 | |
| name_is_regexp: true | |
| name: msi_143_[x64|arm64] | |
| merge_multiple: true | |
| repo: open-eid/updater | |
| - name: Download DigiDoc4 package | |
| uses: dawidd6/action-download-artifact@v11 | |
| with: | |
| workflow: build.yml | |
| branch: arm64 | |
| name_is_regexp: true | |
| name: msi_143_[x64|arm64] | |
| merge_multiple: true | |
| repo: open-eid/DigiDoc4-Client | |
| - name: Download Web-eID packages | |
| uses: dawidd6/action-download-artifact@v11 | |
| with: | |
| workflow: cmake-windows.yml | |
| branch: main | |
| merge_multiple: true | |
| repo: web-eid/web-eid-app | |
| - name: Install WiX | |
| run: | | |
| dotnet tool install --global wix --version 6.0.2 | |
| wix extension -g add WixToolset.UI.wixext/6.0.2 | |
| wix extension -g add WixToolset.Util.wixext/6.0.2 | |
| wix extension -g add WixToolset.BootstrapperApplications.wixext/6.0.2 | |
| - name: Build | |
| env: | |
| BUILD_NUBMER: ${{ github.run_number }} | |
| VER_SUFFIX: .GITHUB | |
| run: | | |
| curl -O -L https://installer.id.ee/media/win/Open-EID.zip | |
| unzip --% Open-EID.zip -x 'Digidoc*' 'web-eid*' 'ID-Updater*' | |
| move web-eid*/src/app/web-eid_*.*64.msi . | |
| pwsh build.ps1 | |
| dir | |
| - name: Archive artifacts | |
| uses: actions/upload-artifact@v5 | |
| with: | |
| name: windows | |
| path: Open-EID_*.exe |