support hex files and added warning #24
Workflow file for this run
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: CI Build Windows | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: 'windows-latest' | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'recursive' | |
- name: install dependencies | |
run: | | |
python3 -m pip install pyinstaller simpleaudio setuptools tk numpy intelhex | |
- name: Build CI | |
run: | | |
python3 package/build.py | |
- name: Archive build | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ESC unlocker windows | |
path: | | |
esc_unlocker_windows.exe | |
retention-days: 7 |