尝试恢复捐赠二维码单击卡片式放大 #2
This file contains hidden or 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: docsearch | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| algolia: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Get the content of docsearch.json as config | |
| id: algolia_config | |
| run: echo "::set-output name=config::$(cat docsearch.json | jq -r tostring)" | |
| - name: Run algolia/docsearch-scraper image | |
| env: | |
| APPLICATION_ID: ${{ secrets.APPLICATION_ID }} | |
| API_KEY: ${{ secrets.API_KEY }} | |
| CONFIG: ${{ steps.algolia_config.outputs.config }} | |
| run: | | |
| docker run \ | |
| --env APPLICATION_ID=${APPLICATION_ID} \ | |
| --env API_KEY=${API_KEY} \ | |
| --env "CONFIG=${CONFIG}" \ | |
| algolia/docsearch-scraper |