Skip to content

Commit

Permalink
feat: lambda builds 2
Browse files Browse the repository at this point in the history
  • Loading branch information
noahmmcgivern committed Dec 4, 2023
1 parent 85bfce7 commit f24e2ad
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Install ${{ matrix.rust }} toolchain
- name: Install ${{ matrix.rust }}-${{ matrix.target }} toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
Expand Down Expand Up @@ -101,9 +101,22 @@ jobs:
name=${GITHUB_REF:10}
fi
echo "tag=${name//v}" >> "$GITHUB_OUTPUT"
- name: Install stable-x86_64-unknown-linux-musl toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
target: x86_64-unknown-linux-musl
override: true
# - name: Build release binaries
# shell: bash
# run: cross build --release --target x86_64-unknown-linux-musl
- name: Build release binaries
shell: bash
run: cross build --release --target x86_64-unknown-linux-musl
uses: actions-rs/cargo@v1
with:
use-cross: true
command: build
args: --release --target x86_64-unknown-linux-musl
- name: Build archive
shell: bash
run: |
Expand Down

0 comments on commit f24e2ad

Please sign in to comment.