This file contains 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 standalone tool on Windows | |
on: push | |
jobs: | |
Compile-on-Windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install dependencies | |
run: | | |
python -m pip install dynaconf pyinstaller mergin-client | |
- name: Build Binary | |
run: | | |
cd scripts | |
call build_exe.bat |