20 lines
470 B
YAML
20 lines
470 B
YAML
# action.yaml
|
|
name: 'PyInstaller Windows'
|
|
description: 'Customisable GitHub Action to package your python code with PyInstaller for Windows'
|
|
branding:
|
|
icon: 'box'
|
|
color: 'blue'
|
|
inputs:
|
|
path:
|
|
description: 'Directory containing source code & .spec file (optional requirements.txt).'
|
|
required: True
|
|
default: src
|
|
outputs:
|
|
output:
|
|
description: 'The output of PyInstaller'
|
|
|
|
runs:
|
|
using: 'docker'
|
|
image: 'Dockerfile'
|
|
args:
|
|
- ${{ inputs.path }} |