From 09164817ca01c1d2342c7768dfa48dabb2c69375 Mon Sep 17 00:00:00 2001 From: Graham Knapp <32717635+dancergraham@users.noreply.github.com> Date: Tue, 18 Oct 2022 14:45:27 +0200 Subject: [PATCH 1/4] docs: update default branch name Update default branch name to match this repo and the current GitHub standard --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 166e246..d6a48cd 100644 --- a/README.md +++ b/README.md @@ -44,9 +44,9 @@ name: Package Application with Pyinstaller on: push: - branches: [ master ] + branches: [ main ] pull_request: - branches: [ master ] + branches: [ main ] jobs: build: From 9c3a65eaf4b1aee16784af1b907176ae95faa07f Mon Sep 17 00:00:00 2001 From: Jack McKew Date: Mon, 1 May 2023 17:59:49 +1000 Subject: [PATCH 2/4] Add comment for python 3.10 --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index d6a48cd..c369f81 100644 --- a/README.md +++ b/README.md @@ -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 +``` From 8ecfdfba5f598a2b79022a51506c32e49b763395 Mon Sep 17 00:00:00 2001 From: Jack McKew Date: Tue, 11 Jul 2023 14:48:17 +0200 Subject: [PATCH 3/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c369f81..c36b9ba 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ 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`: From 1b1d3f463a3cdda600135b86e9d531516c5316ee Mon Sep 17 00:00:00 2001 From: LY <51789698+Young-Lord@users.noreply.github.com> Date: Wed, 19 Jul 2023 08:36:37 +0800 Subject: [PATCH 4/4] docs: fix incorrect indent in example --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c36b9ba..c9f0c68 100644 --- a/README.md +++ b/README.md @@ -27,8 +27,8 @@ 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