Skip to content

Commit

Permalink
Specify Python Version
Browse files Browse the repository at this point in the history
  • Loading branch information
Firebladedoge229 authored May 25, 2024
1 parent 56a6bca commit 70e9cff
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
- main
paths-ignore:
- '**.md'
- '**.yml'

jobs:
build:
Expand All @@ -18,13 +19,13 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
python-version: '3.10.11'

- name: Install dependencies
run: |
pip install psutil
pip install requests
pip install pyinstaller
pip install psutil==5.9.5
pip install requests==2.31.0
pip install pyinstaller==6.4.0
- name: Build executable
run: pyinstaller --onefile --noconsole --icon=icon.ico --add-data="icon.ico;." --add-data="sv_ttk;sv_ttk" robloxstudiomanager.py

Expand Down

0 comments on commit 70e9cff

Please sign in to comment.