This commit is contained in:
Dmitry 2025-11-21 01:15:47 +03:00
parent 984d585abe
commit 8fa50d1a44
2 changed files with 7 additions and 3 deletions

View file

@ -26,9 +26,10 @@ jobs:
- name: Set up Python and dependencies
run: |
apt-get update -qq
apt-get install -y -qq python3 python3-pip python3-venv jq
apt-get install -y -qq python3 python3-pip python3-venv jq bash
python3 --version
pip3 --version
bash --version || echo "bash check failed"
- name: Set up Flutter (for web_v2)
if: inputs.component == 'web_v2'
@ -48,6 +49,7 @@ jobs:
- name: Install Cursor CLI
run: |
# bash should already be installed in previous step
curl https://cursor.com/install -fsS | bash
# Cursor installs to ~/.local/bin by default
export PATH="$HOME/.local/bin:$PATH"

View file

@ -23,15 +23,17 @@ jobs:
with:
fetch-depth: 0
- name: Set up Python
- name: Set up Python and bash
run: |
apt-get update -qq
apt-get install -y -qq python3 python3-pip python3-venv
apt-get install -y -qq python3 python3-pip python3-venv bash
python3 --version
pip3 --version
bash --version || echo "bash check failed"
- name: Install Cursor CLI
run: |
# bash should already be installed in previous step
curl https://cursor.com/install -fsS | bash
# Cursor installs to ~/.local/bin by default
export PATH="$HOME/.local/bin:$PATH"