Bump psutil from 6.1.0 to 6.1.1 #599
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 | |
on: | |
push: | |
branches: | |
- "**" | |
pull_request: | |
jobs: | |
pyinstaller-build-windows: | |
name: Build Windows x64 executable | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.x | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ">=3.7 <3.13" | |
cache: 'pip' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
pip install -r requirements-dev.txt | |
- name: Build with pyinstaller | |
run: pyinstaller -F -n AutoBanana-win64 AutoBanana.py | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: AutoBanana-win64 | |
path: dist/AutoBanana-win64.exe | |
permissions: | |
contents: write |