rename xcode folder #63
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 Windows | |
on: [push] | |
env: | |
KIVY_GL_BACKEND: angle_sdl2 | |
# https://github.com/Alb-310/Geogramint/issues/8#issuecomment-1366548008 | |
jobs: | |
Build-Windows: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: setup python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.x" | |
- name: install pip packages - win | |
run: pip install -r build_requirements/pip_requirements-win.txt | |
- name: install pip packages - kivy | |
run: pip install -r build_requirements/pip_requirements.txt | |
- name: copy spec file | |
run: copy build_requirements/ImgSplitter-windows-onefile.spec.src ImgSplitter.spec | |
- name: build spec | |
run: python -m PyInstaller ImgSplitter.spec | |
- name: Archive Manager Build | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-windows | |
path: build | |
- name: Archive Manager dist | |
uses: actions/upload-artifact@v4 | |
with: | |
name: dist-windows | |
path: dist |