mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-23 02:27:40 +08:00
Add publish action to gemfury for apt pkg
This commit is contained in:
parent
b756fc382a
commit
6b9b5fda7e
4
.github/workflows/publish-deb-pkg.yml
vendored
4
.github/workflows/publish-deb-pkg.yml
vendored
@ -1,4 +1,4 @@
|
|||||||
name: Publish debian package to GitHub release
|
name: Publish deb pkg to GitHub release & apt repository
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
@ -26,3 +26,5 @@ jobs:
|
|||||||
file: target/debian/meilisearch.deb
|
file: target/debian/meilisearch.deb
|
||||||
asset_name: meilisearch.deb
|
asset_name: meilisearch.deb
|
||||||
tag: ${{ github.ref }}
|
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/
|
||||||
|
@ -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
|
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
|
#### Download the binary
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
Loading…
Reference in New Issue
Block a user