Skip to content

Commit bf27e1f

Browse files
committed
fix: revert py removal
1 parent 057f85f commit bf27e1f

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/api-deploy.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- uses: actions/checkout@v4
22+
- name: Set up Python
23+
uses: actions/setup-python@v4
24+
with:
25+
python-version: "3.11"
2226
- name: Setup AWS CLI
2327
uses: aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502 # v4.0.2
2428
with:
@@ -29,8 +33,7 @@ jobs:
2933
uses: Swatinem/rust-cache@v2
3034
- name: Install dependencies
3135
run: |
32-
sudo apt install zig -y
33-
curl -fsSL https://cargo-lambda.info/install.sh | sh
36+
pip install cargo-lambda
3437
cargo install sqlx-cli
3538
- name: Build
3639
run: cargo lambda build --release --output-format zip -p api -p consumer

0 commit comments

Comments
 (0)