Merge pull request #368 from tpayet/add-push-debpkg

Add publish action to gemfury for apt pkg
This commit is contained in:
Clément Renault 2019-12-05 15:35:12 +01:00 committed by GitHub
commit c616ce99a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 1 deletions

View File

@ -1,4 +1,4 @@
name: Publish debian package to GitHub release
name: Publish deb pkg to GitHub release & apt repository
on:
push:
@ -26,3 +26,5 @@ jobs:
file: target/debian/meilisearch.deb
asset_name: meilisearch.deb
tag: ${{ github.ref }}
- name: Upload debian pkg to apt repository
run: curl -F package=@target/debian/meilisearch.deb https://${{ secrets.GEMFURY_PUSH_TOKEN }}@push.fury.io/meilisearch/

View File

@ -33,6 +33,14 @@ For more [details about those features, go to our documentation](https://docs.me
docker run -it -p 7700:7700 --rm getmeili/MeiliSearch
```
#### Installation using APT
```bash
echo "deb [trusted=yes] https://apt.fury.io/meilisearch/ /" > /etc/apt/sources.list.d/fury.list
apt update && apt install meilisearch-http
meilisearch
```
#### Download the binary
```bash