chore: record passing v5.2.0 source preflight #59
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: Windows Installer | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: [main] | |
| jobs: | |
| build-installer: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.11' | |
| - name: Install package | |
| shell: pwsh | |
| run: python -m pip install -e ".[api,dev]" | |
| - name: Build installer package | |
| shell: pwsh | |
| run: .\scripts\build-windows-installer.ps1 | |
| - name: Upload installer artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: MaineFamilyLawLLM-Windows-Installer | |
| path: | | |
| dist/windows_installer/MaineFamilyLawLLM_Installer | |
| dist/windows_installer/MaineFamilyLawLLM_Installer.zip |