We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 473ab93 commit 9cb287cCopy full SHA for 9cb287c
1 file changed
Makefile
@@ -1,5 +1,5 @@
1
# Define variables for the targets and output binary name
2
-TARGETS := x86_64-unknown-linux-musl aarch64-unknown-linux-musl
+TARGETS := aarch64-unknown-linux-musl x86_64-unknown-linux-musl
3
4
# Setup phase to install necessary Rust targets
5
.PHONY: setup
@@ -18,4 +18,9 @@ build: setup
18
# Clean build artifacts
19
.PHONY: clean
20
clean:
21
- cargo clean
+ cargo clean
22
+
23
+# Deploy the Lambda function to AWS
24
+.PHONY: deploy
25
+deploy: build
26
+ cargo lambda deploy --extension
0 commit comments