First commit of action
This commit is contained in:
20
action.yml
Normal file
20
action.yml
Normal file
@@ -0,0 +1,20 @@
|
||||
# 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 }}
|
||||
Reference in New Issue
Block a user