Fix generated executable name on Windows

This commit is contained in:
2024-08-23 20:37:30 -05:00
committed by GitHub
parent 14bbff48da
commit 69e377835e

View File

@@ -18,9 +18,9 @@ jobs:
- name: Extract Version
id: get_version
run: |
version=$(python -c 'from version import APP_VERSION; print(APP_VERSION)')
echo "VERSION=$version" >> $GITHUB_ENV
- name: Create Executables (Windows)
$version = python -c "from version import APP_VERSION; print(APP_VERSION)"
echo "VERSION=$version" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8
- name: Create Executable (Windows-x64)
uses: sayyid5416/pyinstaller@v1
with:
python_ver: '3.11'
@@ -38,7 +38,7 @@ jobs:
run: |
version=$(python -c 'from version import APP_VERSION; print(APP_VERSION)')
echo "VERSION=$version" >> $GITHUB_ENV
- name: Create Executables (Linux)
- name: Create Executable (Linux-x64)
uses: sayyid5416/pyinstaller@v1
with:
python_ver: '3.11'