Add to action

This commit is contained in:
Fizban 2020-06-03 10:04:29 +10:00
parent c2734ccf37
commit 552fdbedd1
2 changed files with 5 additions and 2 deletions

View File

@ -20,7 +20,8 @@ Include this in your `.github/workflows/main.yaml`:
```yaml ```yaml
- name: PyInstaller Windows - name: PyInstaller Windows
uses: JackMcKew/pyinstaller-action-windows@master uses: JackMcKew/pyinstaller-action-windows@master
with: src with:
path: src
``` ```
## Full Example ## Full Example

View File

@ -25,4 +25,6 @@ runs:
using: 'docker' using: 'docker'
image: 'Dockerfile' image: 'Dockerfile'
args: args:
- ${{ inputs.path }} - ${{ inputs.path }}
- ${{ inputs.pypi_url }}
- ${{ inputs.pypi_index_url }}