Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lemonyte/pyinstaller-action
https://github.com/lemonyte/pyinstaller-action
Last synced: 26 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/lemonyte/pyinstaller-action
- Owner: lemonyte
- License: mit
- Created: 2023-08-30T22:33:38.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-08-30T23:33:48.000Z (about 1 year ago)
- Last Synced: 2024-10-07T19:28:49.372Z (about 1 month ago)
- Language: Python
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license.txt
Awesome Lists containing this project
README
# PyInstaller GitHub Action
A simple GitHub Action to build Python projects with PyInstaller.
## Usage
Example workflow:
```yaml
name: PyInstaller Buildon:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:jobs:
build:
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
name: Build release on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v3- name: Build with PyInstaller
uses: lemonyte/pyinstaller-action@main
with:
spec: main.spec
```## Inputs
| Name | Description | Required | Default |
| --- | --- | --- | --- |
| `spec` | Path to your spec file. | Yes | |todo
## License
[MIT License](license.txt)