bash
This commit is contained in:
parent
984d585abe
commit
8fa50d1a44
2 changed files with 7 additions and 3 deletions
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue