Skip to content

Github Action for building executables with Pyinstaller for Linux

License

Notifications You must be signed in to change notification settings

badabing2005/pyinstaller-action-linux

 
 

Repository files navigation

PyInstaller-Action-Linux

Github Action for building executables with PyInstaller for running on Linux
This is a fork of excellent work done by JackMcKew to additionally support building WxPython based programs.

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. Also if you have another program .spec file you can set specific pyinstaller .spec file by spec: <YOUR_SPEC_FILE_NAME>

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

Example usage

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

- name: PyInstaller Linux
  uses: badabing2005/pyinstaller-action-linux@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: badabing2005/pyinstaller-action-linux@main
      with:
        path: src

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

Sources

A big thank you to all the contributors over at:
https://github.com/JackMcKew/pyinstaller-action-linux
https://github.com/cdrx/docker-pyinstaller
https://github.com/Toilal/docker-pyinstaller

About

Github Action for building executables with Pyinstaller for Linux

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Shell 90.6%
  • Dockerfile 9.4%