Add FAQ and example repo

This commit is contained in:
Fizban 2020-06-15 21:10:01 +10:00
parent 318c4aa936
commit 33e01256d3
1 changed files with 6 additions and 0 deletions

View File

@ -19,6 +19,8 @@ If you wish to specify a package mirror, this is possibly via the `pypi_url` and
## Example usage
There's an example repository where you can see this action in action: <https://github.com/JackMcKew/pyinstaller-action-windows-example>. Where you can find the packaged executable at: <https://github.com/JackMcKew/pyinstaller-action-windows-example/actions/runs/135879475>.
Include this in your `.github/workflows/main.yaml`:
```yaml
@ -64,6 +66,10 @@ jobs:
path: src/dist/windows
```
## FAQ
If you get this error: `OSError: [WinError 123] Invalid name: '/tmp\\*'`, ensure your path is correctly configured, the default is `src`.
## Sources
A big thank you to all the contributors over at <https://github.com/cdrx/docker-pyinstaller>, this action is just a modified version of their docker container, thank you!