pyinstaller-action-windows/action.yml

20 lines
470 B
YAML
Raw Normal View History

2020-06-02 21:32:30 +08:00
# 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
2020-06-02 22:22:44 +08:00
default: src
2020-06-02 21:32:30 +08:00
outputs:
output:
description: 'The output of PyInstaller'
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.path }}