Skip to content

Update python-package.yml #2

Update python-package.yml

Update python-package.yml #2

name: Python application
on: [push]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r Local-Windows/requirements.txt
- name: Build exe
run: |
cd Local-Windows
pyinstaller --onefile main.py