From 5e0f80492df6c5cfc97b263d712a46f9811cdfcb Mon Sep 17 00:00:00 2001 From: Conor Walker <39270500+conor-walker@users.noreply.github.com> Date: Tue, 25 Jan 2022 22:58:23 +0000 Subject: [PATCH] Update python-app.yml --- .github/workflows/python-app.yml | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index f508f66..8498af9 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -26,12 +26,27 @@ jobs: uses: JackMcKew/pyinstaller-action-linux@0.1.4 with: # Directory containing source code & .spec file (optional requirements.txt). - path: '' + path: src # Specify a custom URL for PYPI pypi_url: https://pypi.python.org/ # Specify a custom URL for PYPI Index pypi_index_url: https://pypi.python.org/simple # Specify a file path for .spec file - spec: '' + spec: src/pydle.spec + # Specify whether to install Tkinter or not + tkinter: false + - name: PyInstaller Windows + # You may pin to the exact commit or the version. + # uses: JackMcKew/pyinstaller-action-windows@a8dee21ad01bbc7e7363d445bb632691b95ba057 + uses: JackMcKew/pyinstaller-action-windows@v0.1.2 + with: + # Directory containing source code (optional requirements.txt). + path: src + # Specify a custom URL for PYPI + pypi_url: https://pypi.python.org/ + # Specify a custom URL for PYPI Index + pypi_index_url: https://pypi.python.org/simple + # Specify a file path for .spec file + spec: src/pydle.spec # Specify whether to install Tkinter or not tkinter: false