merge newfrontend into main #137
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 binaries | |
on: | |
push: | |
paths-ignore: | |
- '**.md' | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v2.3.3 | |
with: | |
python-version: '3.11.0' | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.17.1 | |
cache: 'npm' | |
cache-dependency-path: 'src/dcef/frontend/package-lock.json' | |
- name: Install pyinstaller | |
working-directory: backend/preprocess | |
run: pip install pyinstaller==5.5 | |
- name: Run build script | |
run: src\BUILD_RELEASE.bat | |
- name: Upload build folder | |
uses: actions/upload-artifact@v2 | |
with: | |
name: windows-build | |
path: release |