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