diff --git a/README.md b/README.md index 166e246..c9f0c68 100644 --- a/README.md +++ b/README.md @@ -20,15 +20,15 @@ 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: . Where you can find the packaged executable at: . +There's an example repository where you can see this action in action: . Include this in your `.github/workflows/main.yaml`: ```yaml - name: PyInstaller Windows uses: JackMcKew/pyinstaller-action-windows@main - with: - path: src + with: + path: src ``` ## Full Example @@ -44,9 +44,9 @@ name: Package Application with Pyinstaller on: push: - branches: [ master ] + branches: [ main ] pull_request: - branches: [ master ] + branches: [ main ] jobs: build: @@ -74,3 +74,14 @@ If you get this error: `OSError: [WinError 123] Invalid name: '/tmp\\*'`, ensure ## Sources A big thank you to all the contributors over at , 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 +```