mirror of
https://github.com/putnam/binmerge.git
synced 2025-04-19 08:28:06 +02:00
Merge branch 'master' of github.com:putnam/binmerge
This commit is contained in:
commit
e8a55b0f9a
1 changed files with 24 additions and 0 deletions
24
.github/workflows/main.yml
vendored
Normal file
24
.github/workflows/main.yml
vendored
Normal 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 --help
|
||||
- uses: actions/upload-artifact@v2
|
||||
with:
|
||||
path: dist/*
|
Loading…
Add table
Add a link
Reference in a new issue