1
0
Fork 0
mirror of https://github.com/putnam/binmerge.git synced 2025-04-19 08:28:06 +02:00

windows build workflow

This commit is contained in:
Chris Putnam 2024-02-10 21:39:36 -06:00 committed by GitHub
parent a8c34ae00a
commit 6ab0c6a7b9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

24
.github/workflows/main.yml vendored Normal file
View file

@ -0,0 +1,24 @@
on:
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ['windows-latest']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.12
- run: pip install pyinstaller
- run: pyinstaller -F binmerge
# Optionally verify that it works (provided that it does not need user interaction)
- run: ./dist/binmerge.exe
- uses: actions/upload-artifact@v2
with:
path: dist/*