upload as artifact #12
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: robinraju/[email protected] | |
with: | |
repository: "MerginMaps/geodiff" | |
latest: true | |
fileName: "geodiff_windows_binaries.zip" | |
zipBall: true | |
out-file-path: "scripts/windows_binaries" | |
extract: true | |
- name: Delete files from binaries | |
run: | | |
cd scripts/windows_binaries | |
del geodiff_*.zip | |
del geodiff-*.zip | |
- 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 | |
cmd.exe /C build_exe.bat | |
- name: Copy config file | |
run: copy config.yaml.default scripts/dist/config.yaml | |
- name: Zip Release | |
run: | | |
cd scripts/dist | |
tar.exe -a -c -f dbsync_standalone_win.zip dbsync_daemon.exe config.yaml | |
- name: Upload Zip file as artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: dbsync_standalone_win | |
path: scripts/dist/dbsync_standalone_win.zip |