We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 057f85f commit bf27e1fCopy full SHA for bf27e1f
.github/workflows/api-deploy.yml
@@ -19,6 +19,10 @@ jobs:
19
runs-on: ubuntu-latest
20
steps:
21
- uses: actions/checkout@v4
22
+ - name: Set up Python
23
+ uses: actions/setup-python@v4
24
+ with:
25
+ python-version: "3.11"
26
- name: Setup AWS CLI
27
uses: aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502 # v4.0.2
28
with:
@@ -29,8 +33,7 @@ jobs:
29
33
uses: Swatinem/rust-cache@v2
30
34
- name: Install dependencies
31
35
run: |
32
- sudo apt install zig -y
- curl -fsSL https://cargo-lambda.info/install.sh | sh
36
+ pip install cargo-lambda
37
cargo install sqlx-cli
38
- name: Build
39
run: cargo lambda build --release --output-format zip -p api -p consumer
0 commit comments