mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-04 20:37:15 +02:00
update relevant changes from master
This commit is contained in:
parent
5ecf514d28
commit
0cd8869349
16 changed files with 276 additions and 26 deletions
38
.github/workflows/create_artifacts.yml
vendored
Normal file
38
.github/workflows/create_artifacts.yml
vendored
Normal file
|
@ -0,0 +1,38 @@
|
|||
name: Create artifacts
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- v*-alpha.*
|
||||
|
||||
jobs:
|
||||
nightly:
|
||||
name: Build Nighlty ${{ matrix.os }}
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
matrix:
|
||||
os: [ubuntu-latest, macos-latest, windows-latest]
|
||||
include:
|
||||
- os: ubuntu-latest
|
||||
artifact_name: meilisearch
|
||||
asset_name: meilisearch-alpha-linux-amd64
|
||||
- os: macos-latest
|
||||
artifact_name: meilisearch
|
||||
asset_name: meilisearch-alpha-macos-amd64
|
||||
- os: windows-latest
|
||||
artifact_name: meilisearch.exe
|
||||
asset_name: meilisearch-alpha-windows-amd64.exe
|
||||
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 }}
|
20
.github/workflows/publish_to_docker.yml
vendored
Normal file
20
.github/workflows/publish_to_docker.yml
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
name: Publish to dockerhub
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- v*-alpha.*
|
||||
|
||||
jobs:
|
||||
publish:
|
||||
name: Publishing to dockerhub
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Publish to Registry
|
||||
uses: elgohr/Publish-Docker-Github-Action@master
|
||||
with:
|
||||
name: getmeili/meilisearch
|
||||
username: ${{ secrets.DOCKER_USERNAME }}
|
||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||
tag_names: true
|
6
.github/workflows/rust.yml
vendored
6
.github/workflows/rust.yml
vendored
|
@ -1,10 +1,6 @@
|
|||
name: Rust
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
on: push
|
||||
|
||||
env:
|
||||
CARGO_TERM_COLOR: always
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue