Skip to content

Create README.md

Create README.md #3

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Build Application
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.14
uses: actions/setup-python@v3
with:
python-version: "3.14"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pyinstaller
- name: Create binaries
run: |
pyinstaller --onefile --icon=icon.ico hack.py
pyinstaller --onefile --icon=icon.ico reset.py
- name: Publish binaries
uses: actions/upload-artifact@v4
with:
name: Binary File
path: dist