Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: '3.10.11'
python-version: '3.12.3'
architecture: 'x64'
allow-prereleases: true

Expand All @@ -45,9 +45,9 @@ jobs:
echo "__version__ = '${{ inputs.tag }}'" > _version.py
- name: Install Build Environment Prerequisites
run: |
pip install pyinstaller==6.12.0
pip install cryptography==43.0.3
pip install pillow==11.0.0
pip install pyinstaller==6.16.0
pip install cryptography==45.0.1
pip install pillow==10.4.0

- name: Build EXE Package
run: |
Expand All @@ -59,7 +59,7 @@ jobs:
path: dist/*

- name: Install WiX
run: dotnet tool install --global wix --version 5.0.2
run: dotnet tool install --global wix

- name: Build MSI Package
shell: pwsh
Expand Down