Update CI to send a signal to Cloud team when Docker image is pushed

Co-authored-by: Samuel Jimenez <sjimenezre@gmail.com>
This commit is contained in:
Clémentine Urquizar 2022-09-21 11:03:01 +02:00
parent 528a4721c1
commit d3b984d862
No known key found for this signature in database
GPG Key ID: D8E7CC7422E77E1A

View File

@ -62,10 +62,19 @@ jobs:
type=raw,value=latest,enable=${{ steps.check-tag-format.outputs.stable == 'true' }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v3
with:
# We do not push tags for the cron jobs, this is only for test purposes
push: ${{ github.event_name != 'schedule' }}
platforms: linux/amd64,linux/arm64
tags: ${{ steps.meta.outputs.tags }}
# /!\ Don't touch this without checking with Cloud team
- name: Send CI information to Cloud team
if: github.event_name != 'schedule'
uses: peter-evans/repository-dispatch@v2
with:
token: ${{ secrets.MEILI_BOT_GH_PAT }}
repository: meilisearch/meilisearch-cloud
event-type: cloud-docker-build
client-payload: '{ "meilisearch_version": "${{ steps.meta.outputs.tags }}", "stable": "${{ steps.check-tag-format.outputs.stable }}" }'