Skip to content

Commit e8a55b0

Browse files
author
Chris Putnam
committed
Merge branch 'master' of github.com:putnam/binmerge
2 parents 33d286f + 05c615c commit e8a55b0

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/main.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
on:
2+
workflow_dispatch:
3+
4+
jobs:
5+
build:
6+
runs-on: ${{ matrix.os }}
7+
strategy:
8+
fail-fast: false
9+
matrix:
10+
os: ['windows-latest']
11+
12+
steps:
13+
- uses: actions/checkout@v2
14+
- uses: actions/setup-python@v2
15+
with:
16+
python-version: 3.12
17+
18+
- run: pip install pyinstaller
19+
- run: pyinstaller -F binmerge
20+
# Optionally verify that it works (provided that it does not need user interaction)
21+
- run: ./dist/binmerge.exe --help
22+
- uses: actions/upload-artifact@v2
23+
with:
24+
path: dist/*

0 commit comments

Comments
 (0)