spec path
This commit is contained in:
parent
33e01256d3
commit
ff7e885f69
|
@ -6,7 +6,7 @@ branding:
|
||||||
color: 'blue'
|
color: 'blue'
|
||||||
inputs:
|
inputs:
|
||||||
path:
|
path:
|
||||||
description: 'Directory containing source code & .spec file (optional requirements.txt).'
|
description: 'Directory containing source code (optional requirements.txt).'
|
||||||
required: True
|
required: True
|
||||||
default: src
|
default: src
|
||||||
pypi_url:
|
pypi_url:
|
||||||
|
@ -17,6 +17,10 @@ inputs:
|
||||||
description: 'Specify a custom URL for PYPI Index'
|
description: 'Specify a custom URL for PYPI Index'
|
||||||
required: False
|
required: False
|
||||||
default: https://pypi.python.org/simple
|
default: https://pypi.python.org/simple
|
||||||
|
spec:
|
||||||
|
description: 'Specify a file path for .spec file'
|
||||||
|
required: False
|
||||||
|
default: pyinstaller.spec
|
||||||
outputs:
|
outputs:
|
||||||
output:
|
output:
|
||||||
description: 'The output of PyInstaller'
|
description: 'The output of PyInstaller'
|
||||||
|
@ -28,3 +32,4 @@ runs:
|
||||||
- ${{ inputs.path }}
|
- ${{ inputs.path }}
|
||||||
- ${{ inputs.pypi_url }}
|
- ${{ inputs.pypi_url }}
|
||||||
- ${{ inputs.pypi_index_url }}
|
- ${{ inputs.pypi_index_url }}
|
||||||
|
- ${{ inputs.spec }}
|
||||||
|
|
Loading…
Reference in New Issue