不当人了——页面加载时销毁medium-zoom+放大时统一图片显示尺寸 #6
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 |