mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-07-26 16:21:07 +00:00
CI recipes
This commit is contained in:
19
.github/workflows/publish_to_docker.yml
vendored
Normal file
19
.github/workflows/publish_to_docker.yml
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
name: Publish to dockerhub
|
||||
|
||||
on:
|
||||
push:
|
||||
tags:
|
||||
- v*-alpha.*
|
||||
|
||||
jobs:
|
||||
publish:
|
||||
name: Publishing to dockerhub
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- 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
|
Reference in New Issue
Block a user