mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-05 12:38:55 +01:00
Merge pull request #335 from tpayet/github-release-action
GitHub release action
This commit is contained in:
commit
58eaf78dc4
4
.github/workflows/README.md
vendored
4
.github/workflows/README.md
vendored
@ -8,6 +8,4 @@
|
||||
|
||||
- On each pull request, we are triggering `cargo test`.
|
||||
- On each commit on master, we are building the latest docker image.
|
||||
|
||||
## TODO
|
||||
- On each tag, we should build the tagged docker image and the binaries for Debian & CentOS
|
||||
- On each tag, we are building the tagged docker image and the binaries for MacOS & Ubuntu.
|
||||
|
36
.github/workflows/publish-binaries.yml
vendored
Normal file
36
.github/workflows/publish-binaries.yml
vendored
Normal file
@ -0,0 +1,36 @@
|
||||
name: Publish binaries to GitHub release
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- '*'
|
||||
|
||||
jobs:
|
||||
publish:
|
||||
name: Publish for ${{ matrix.os }}
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest, macos-latest]
|
||||
include:
|
||||
- os: ubuntu-latest
|
||||
artifact_name: meilidb-http
|
||||
asset_name: meilidb-http-linux-amd64
|
||||
- os: macos-latest
|
||||
artifact_name: meilidb-http
|
||||
asset_name: meilidb-http-macos-amd64
|
||||
|
||||
steps:
|
||||
- uses: hecrj/setup-rust-action@master
|
||||
with:
|
||||
rust-version: stable
|
||||
- uses: actions/checkout@v1
|
||||
- name: Build
|
||||
run: cargo build --release --locked
|
||||
- name: Upload binaries to release
|
||||
uses: svenstaro/upload-release-action@v1-release
|
||||
with:
|
||||
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
file: target/release/${{ matrix.artifact_name }}
|
||||
asset_name: ${{ matrix.asset_name }}
|
||||
tag: ${{ github.ref }}
|
Loading…
Reference in New Issue
Block a user