First commit of action

This commit is contained in:
Fizban
2020-06-02 23:32:30 +10:00
parent 51f2ad7930
commit d11855e628
4 changed files with 157 additions and 0 deletions

20
action.yml Normal file
View 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 }}