diff --git a/.github/workflows/build_exe.yml b/.github/workflows/build_exe.yml new file mode 100644 index 0000000..290a325 --- /dev/null +++ b/.github/workflows/build_exe.yml @@ -0,0 +1,25 @@ +name: PyInstaller + +on: + pull_request: + branches: [master] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: PyInstaller Windows + uses: JackMcKew/pyinstaller-action-windows@main + with: + path: ./ + + - uses: actions/upload-artifact@v2 + with: + name: my-exe + path: bin/dist/windows + + - name: Display structure of downloaded files + run: ls -R