Merge branch 'JackMcKew:main' into python3-10-pyinstaller-5-13
This commit is contained in:
commit
9e5e0015f0
17
README.md
17
README.md
|
@ -20,7 +20,7 @@ If you wish to specify a package mirror, this is possibly via the `pypi_url` and
|
||||||
|
|
||||||
## Example usage
|
## 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>.
|
There's an example repository where you can see this action in action: <https://github.com/JackMcKew/pyinstaller-action-windows-example>.
|
||||||
|
|
||||||
Include this in your `.github/workflows/main.yaml`:
|
Include this in your `.github/workflows/main.yaml`:
|
||||||
|
|
||||||
|
@ -44,9 +44,9 @@ name: Package Application with Pyinstaller
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ master ]
|
branches: [ main ]
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ master ]
|
branches: [ main ]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
@ -74,3 +74,14 @@ If you get this error: `OSError: [WinError 123] Invalid name: '/tmp\\*'`, ensure
|
||||||
## Sources
|
## 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!
|
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!
|
||||||
|
|
||||||
|
## Python 3.10
|
||||||
|
|
||||||
|
If you are running into problems, please try using the branch `python3-10-pyinstaller-5-3`:
|
||||||
|
|
||||||
|
``` yaml
|
||||||
|
- name: PyInstaller Windows
|
||||||
|
uses: JackMcKew/pyinstaller-action-windows@python3-10-pyinstaller-5-3
|
||||||
|
with:
|
||||||
|
path: src
|
||||||
|
```
|
||||||
|
|
Loading…
Reference in New Issue