Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 3 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,10 @@ jobs:
uses: dtolnay/rust-toolchain@stable
- name: Install Zig toolchain
uses: mlugg/setup-zig@v2
- name: Install Cargo Lambda
uses: jaxxstorm/action-install-gh-release@v1.12.0
with:
repo: cargo-lambda/cargo-lambda
platform: linux # Other valid options: 'windows' or 'darwin'
arch: x86_64 # Other valid options for linux: 'aarch64'
- name: Build release
run: cargo lambda build --release --output-format zip
run: |
pip install cargo-lambda
cargo lambda build --release --output-format zip

- name: release
uses: actions/create-release@v1
Expand Down
13 changes: 4 additions & 9 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,9 @@ jobs:
uses: dtolnay/rust-toolchain@stable
- name: Install Zig toolchain
uses: mlugg/setup-zig@v2
- name: Install Cargo Lambda
uses: jaxxstorm/action-install-gh-release@v1.12.0
with:
repo: cargo-lambda/cargo-lambda
platform: linux # Other valid options: 'windows' or 'darwin'
arch: x86_64 # Other valid options for linux: 'aarch64'
# Add your build steps below
- name: Build
run: cargo lambda build
- name: Run tests
run: cargo test --verbose
- name: Build
run: |
pip install cargo-lambda
cargo lambda build
Loading