From ff7e885f69e5041de9c70b805d58cbfe9b8a93b4 Mon Sep 17 00:00:00 2001 From: Biplob SD <43641536+biplobsd@users.noreply.github.com> Date: Wed, 24 Jun 2020 22:57:19 +0600 Subject: [PATCH] spec path --- action.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 6684dde..2b47af5 100644 --- a/action.yml +++ b/action.yml @@ -6,7 +6,7 @@ branding: color: 'blue' inputs: path: - description: 'Directory containing source code & .spec file (optional requirements.txt).' + description: 'Directory containing source code (optional requirements.txt).' required: True default: src pypi_url: @@ -17,6 +17,10 @@ inputs: description: 'Specify a custom URL for PYPI Index' required: False default: https://pypi.python.org/simple + spec: + description: 'Specify a file path for .spec file' + required: False + default: pyinstaller.spec outputs: output: description: 'The output of PyInstaller' @@ -27,4 +31,5 @@ runs: args: - ${{ inputs.path }} - ${{ inputs.pypi_url }} - - ${{ inputs.pypi_index_url }} \ No newline at end of file + - ${{ inputs.pypi_index_url }} + - ${{ inputs.spec }}