Skip to content

Commit 88f3a70

Browse files
committed
feat: intial release
1 parent 89b39a4 commit 88f3a70

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ jobs:
2929
toolchain: stable
3030
components: rustfmt, clippy
3131

32+
- name: Setup Zig
33+
uses: mlugg/setup-zig@v1
34+
3235
- name: Install Dependencies
3336
run: cargo fetch --locked
3437

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,12 @@ setup:
88
rustup target add $$target; \
99
done
1010

11+
1112
# Build the binary for all targets
1213
.PHONY: build
1314
build: setup
15+
cargo install cargo-binstall
16+
cargo binstall cargo-lambda --no-confirm
1417
@for target in $(TARGETS); do \
1518
cargo lambda build --release --extension --target $$target; \
1619
done

0 commit comments

Comments
 (0)