Skip to content

Commit 907a9c2

Browse files
committed
feat: ensure Python and pip are installed in the Deploy ARC Runner workflow
1 parent 6c4f206 commit 907a9c2

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/deploy-arc.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,11 @@ jobs:
4545
env:
4646
ARC_PRIVATE_KEY: ${{ secrets.ARC_PRIVATE_KEY }}
4747

48+
- name: Ensure Python and pip are installed
49+
run: |
50+
sudo apt-get update
51+
sudo apt-get install -y python3 python3-pip
52+
4853
- name: Run install script
4954
run: |
5055
chmod +x scripts/install-upgrade-arc.sh

0 commit comments

Comments
 (0)