mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-22 21:04:27 +01:00
Merge branch 'master' of git://github.com/meilisearch/MeiliSearch into update-readme
This commit is contained in:
commit
f3382125e1
24
.github/workflows/publish-binaries.yml
vendored
24
.github/workflows/publish-binaries.yml
vendored
@ -37,3 +37,27 @@ jobs:
|
|||||||
file: target/release/${{ matrix.artifact_name }}
|
file: target/release/${{ matrix.artifact_name }}
|
||||||
asset_name: ${{ matrix.asset_name }}
|
asset_name: ${{ matrix.asset_name }}
|
||||||
tag: ${{ github.ref }}
|
tag: ${{ github.ref }}
|
||||||
|
|
||||||
|
publish-armv7:
|
||||||
|
name: Publish for ARMv7
|
||||||
|
runs-on: ubuntu-18.04
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v1.0.0
|
||||||
|
- uses: uraimo/run-on-arch-action@v1.0.7
|
||||||
|
id: runcmd
|
||||||
|
with:
|
||||||
|
architecture: armv7
|
||||||
|
distribution: ubuntu18.04
|
||||||
|
run: |
|
||||||
|
apt update
|
||||||
|
apt install -y curl gcc make
|
||||||
|
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal --default-toolchain stable
|
||||||
|
source $HOME/.cargo/env
|
||||||
|
cargo build --release --locked
|
||||||
|
- name: Upload the binary to release
|
||||||
|
uses: svenstaro/upload-release-action@v1-release
|
||||||
|
with:
|
||||||
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
file: target/release/meilisearch
|
||||||
|
asset_name: meilisearch-linux-armv7
|
||||||
|
tag: ${{ github.ref }}
|
||||||
|
Loading…
Reference in New Issue
Block a user