Release new docs #385
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Trigger milvus.io production build | |
on: | |
repository_dispatch: | |
types: prod-deploy | |
push: | |
paths-ignore: | |
- "preview/**.md" | |
jobs: | |
build: | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Stats Docs Words | |
env: | |
MSERVICE_URL: ${{secrets.MSERVICE_URL}} | |
run: | | |
mv word-count.md word-count.js | |
yarn | |
node word-count.js | |
- name: Trigger milvus.io | |
run: | | |
curl -XPOST -H "Authorization: Bearer ${{secrets.GH_TOKEN}}" https://api.github.com/repos/milvus-io/milvus.io/dispatches -d '{"event_type": "prod-deploy"}' |