Update python-app.yml

develop
Conor Walker 3 years ago committed by GitHub
parent 4f386fa560
commit 5e0f80492d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -26,12 +26,27 @@ jobs:
uses: JackMcKew/pyinstaller-action-linux@0.1.4 uses: JackMcKew/pyinstaller-action-linux@0.1.4
with: with:
# Directory containing source code & .spec file (optional requirements.txt). # Directory containing source code & .spec file (optional requirements.txt).
path: '' path: src
# Specify a custom URL for PYPI # Specify a custom URL for PYPI
pypi_url: https://pypi.python.org/ pypi_url: https://pypi.python.org/
# Specify a custom URL for PYPI Index # Specify a custom URL for PYPI Index
pypi_index_url: https://pypi.python.org/simple pypi_index_url: https://pypi.python.org/simple
# Specify a file path for .spec file # 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 # Specify whether to install Tkinter or not
tkinter: false tkinter: false

Loading…
Cancel
Save