Github Action for building executables with Pyinstaller
Go to file Use this template
Biplob SD 9cdd374622
default *.spec
2020-06-25 17:37:37 +06:00
.gitattributes Initial commit 2020-06-02 22:28:20 +10:00
.gitignore First commit of action 2020-06-02 23:32:30 +10:00
Dockerfile Try from image 2020-06-03 00:02:20 +10:00
LICENSE Initial commit 2020-06-02 22:28:20 +10:00
README.md Add FAQ and example repo 2020-06-15 21:10:01 +10:00
action.yml default *.spec 2020-06-25 17:37:37 +06:00
entrypoint.sh default *.spec 2020-06-25 17:35:29 +06:00

README.md

PyInstaller-Action-Windows

Github Action for building executables with PyInstaller

To build your application, you need to specify where your source code is via the path argument, this defaults to src.

The source code directory should have your .spec file that PyInstaller generates. If you don't have one, you'll need to run PyInstaller once locally to generate it.

If the src folder has a requirements.txt file, the packages will be installed into the environment before PyInstaller runs.

If you wish to specify a package mirror, this is possibly via the pypi_url and/or the pypi_index_url, these defaults are:

  • pypi_url = https://pypi.python.org/
  • pypi_index_url = https://pypi.python.org/simple

If you are using the default Python gitignore file, ensure to remove .spec.

This action uses Wine to emulate windows inside Docker for packaging POSIX executables.

Example usage

There's an example repository where you can see this action in action: https://github.com/JackMcKew/pyinstaller-action-windows-example. Where you can find the packaged executable at: https://github.com/JackMcKew/pyinstaller-action-windows-example/actions/runs/135879475.

Include this in your .github/workflows/main.yaml:

- name: PyInstaller Windows
  uses: JackMcKew/pyinstaller-action-windows@main
    with:
      path: src

Full Example

Here is an entire workflow for:

  • Packaging an application with PyInstaller
  • Uploading the packaged executable as an artifact

name: Package Application with Pyinstaller

on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2

    - name: Package Application
      uses: JackMcKew/pyinstaller-action-windows@main
      with:
        path: src

    - uses: actions/upload-artifact@v2
      with:
        name: name-of-artifact
        path: src/dist/windows

FAQ

If you get this error: OSError: [WinError 123] Invalid name: '/tmp\\*', ensure your path is correctly configured, the default is src.

Sources

A big thank you to all the contributors over at https://github.com/cdrx/docker-pyinstaller, this action is just a modified version of their docker container, thank you!