Skip to content
This repository was archived by the owner on Jun 26, 2025. It is now read-only.

Commit 34b69c3

Browse files
committed
python
1 parent 5ee6596 commit 34b69c3

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/deploy.yaml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,16 @@ jobs:
2424
oauth-secret: ${{ secrets.TS_OAUTH_SECRET }}
2525
use-cache: 'true'
2626

27-
- name: Install Ansible
28-
run: sudo apt-get install -y ansible
27+
- name: Set up Python
28+
uses: actions/setup-python@v5
29+
with:
30+
python-version: '3.12'
31+
cache: 'pip'
32+
33+
- name: Install dependencies
34+
run: |
35+
python -m pip install --upgrade pip
36+
pip install -r deploy/requirements.txt
2937
3038
- name: Add Server IP to Ansible hosts
3139
run: |

0 commit comments

Comments
 (0)