From 6ab0c6a7b9eff6464481a82f62e9b0ad65feb5c3 Mon Sep 17 00:00:00 2001 From: Chris Putnam Date: Sat, 10 Feb 2024 21:39:36 -0600 Subject: [PATCH] windows build workflow --- .github/workflows/main.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..57de646 --- /dev/null +++ b/.github/workflows/main.yml @@ -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/*