Skip to content

Update README.md

Update README.md #57

Workflow file for this run

name: Sync To Gitee International
on:
push:
branches: [ international ]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Sitemap Check
run: |
sleep 120; while true; do STATUS=$(curl -s --head -w %{http_code} https://help.meetflowtime.com/sitemap.xml -o /dev/null); if [ $STATUS = 200 ]; then echo 'exit...'; break; else echo $STATUS 'wating'; sleep 3; fi; done
ds-update:
runs-on: ubuntu-latest
needs: check
steps:
- uses: actions/checkout@v1
- name: Doc Search Update
run: |
docker run -i -e "API_KEY=${{ secrets.ALGOLIA_API_KEY_INTERNATIONAL }}" -e "APPLICATION_ID=${{ secrets.ALGOLIA_APPLICATION_ID_INTERNATIONAL }}" -e "CONFIG=$(cat ./scrapy-international.json | jq -r tostring)" algolia/docsearch-scraper:v1.16.0