Skip to content

Commit

Permalink
github actions fix
Browse files Browse the repository at this point in the history
  • Loading branch information
levoncrypto committed Dec 29, 2023
1 parent 3477675 commit d3d99af
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,12 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
python-version: '3.9.0'
- name: Install Application Dependencies
run: |
python --version
python -m pip install setuptools==65.3.0
python -m pip install pip==20.2.3
python -m pip install -r requirements.txt
- name: Bundle Application
run: python -m PyInstaller --distpath=bin --workpath=work dash_masternode_tool.spec
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/ci-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,12 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
python-version: '3.9.0'
- name: Install Application Dependencies
run: |
python --version
python -m pip install setuptools==65.3.0
python -m pip install pip==20.2.3
python -m pip install -r requirements.txt
- name: Bundle Application
run: python -m PyInstaller --distpath=bin --workpath=work dash_masternode_tool.spec
Expand Down

0 comments on commit d3d99af

Please sign in to comment.