Skip to content

Commit 843f81e

Browse files
authored
Add Python setup step to deployment workflow
1 parent 04af72c commit 843f81e

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/deploy-dev.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,12 @@ jobs:
1616
path: .github/actions
1717
persist-credentials: false
1818
ssh-key: '${{ secrets.ITERING_ACTIONS_DEPLOY_KEY }}'
19-
19+
- name: Init python
20+
uses: actions/setup-python@v2
21+
with:
22+
python-version: '3.10'
23+
cache: 'pip'
24+
2025
- uses: ./.github/actions/smart-vercel
2126
name: Deploy to Vercel
2227
id: smart-vercel

0 commit comments

Comments
 (0)