Skip to content
This repository has been archived by the owner on Sep 4, 2024. It is now read-only.

Update README.md

Update README.md #11

Workflow file for this run

name: Build optimization_methods
on:
push:
branches:
- main
jobs:
build-app:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Python 3.11
uses: actions/setup-python@v2
with:
python-version: 3.11
- name: Install requirements
run: pip install -r requirements.txt pyinstaller
- name: Generate UI scripts from .ui files
run: pyuic5 -o optimization_methods/gui/MainWindowUi.py optimization_methods/gui/MainWindow.ui
- name: Generate artifact
run: pyinstaller --noconsole --onefile --icon=etc/icon.ico --name optimization_methods optimization_methods/__main__.py
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: optimization_methods
path: dist/*
retention-days: 1