From cd707f80083cccf806958c5bab405dc742d4c24a Mon Sep 17 00:00:00 2001 From: Yax <1949284+kianby@users.noreply.github.com> Date: Mon, 6 Nov 2023 14:43:19 +0100 Subject: [PATCH] pyinstaller action --- .github/workflows/pyinstaller | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/pyinstaller diff --git a/.github/workflows/pyinstaller b/.github/workflows/pyinstaller new file mode 100644 index 0000000..3cf108e --- /dev/null +++ b/.github/workflows/pyinstaller @@ -0,0 +1,24 @@ +name: Package exe with PyInstaller - Windows + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: PyInstaller + uses: JackMcKew/pyinstaller-action-windows@python3-10-pyinstaller-5-3 + with: + path: . + + - uses: actions/upload-artifact@v2 + with: + name: my-exe + path: src/dist