Skip to content

Commit

Permalink
feast: added cross build
Browse files Browse the repository at this point in the history
  • Loading branch information
Wildhoney committed Mar 15, 2024
1 parent d303b32 commit 8663446
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,22 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Build binary
uses: houseabsolute/actions-rust-cross@v0
with:
command: ${{ matrix.platform.command }}
target: ${{ matrix.platform.target }}
args: "--locked --release"
strip: true
strip: true

- name: Create Release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false

0 comments on commit 8663446

Please sign in to comment.