📝 docs: add MCP setup guides and improve SEO with structured data #59
Workflow file for this run
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: Scrape-Cheerio Docker Image CI | |
| on: | |
| push: | |
| tags: | |
| - v* | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| packages: write | |
| id-token: write | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Login to GitHub Container Registry | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Build and push Scrape Cheerio image | |
| uses: mr-smithers-excellent/docker-build-push@v6 | |
| with: | |
| image: anycrawl-scrape-cheerio | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| multiPlatform: true | |
| platform: linux/amd64,linux/arm64 | |
| dockerfile: ./packages/scrape/Dockerfile.cheerio | |
| tags: latest,${GITHUB_REF#refs/tags/} |