Merge branch 'main' of https://github.com/TheDataMine/the-examples-book #4359
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
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Wait for CF Pages | |
| id: cf-pages | |
| uses: WalshyDev/cf-pages-await@v1 | |
| with: | |
| accountEmail: ${{ secrets.CLOUDFLARE_ACCOUNT_EMAIL }} | |
| apiKey: ${{ secrets.CLOUDFLARE_GLOBAL_API_KEY }} | |
| accountId: 'c07da5a4aa8d50689311ae57df77e3a6' | |
| project: 'the-examples-book' | |
| # Add this if you want GitHub Deployments (see below) | |
| githubToken: ${{ secrets.GITHUB_TOKEN }} | |
| run-scraper: | |
| needs: build | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Clone TheDataMine/docs-scraper | |
| uses: actions/checkout@v2 | |
| with: | |
| repository: TheDataMine/docs-scraper | |
| - name: Install pipenv | |
| run: | | |
| python3 -m pip install --upgrade pipenv wheel | |
| - id: cache-pipenv | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.local/share/virtualenvs | |
| key: ${{ runner.os }}-pipenv-${{ hashFiles('**/Pipfile.lock') }} | |
| - name: Install dependencies | |
| if: steps.cache-pipenv.outputs.cache-hit != 'true' | |
| run: | |
| pipenv install | |
| - name: Run docs-scraper | |
| env: | |
| MEILISEARCH_HOST_URL: ${{ secrets.MEILISEARCH_HOST_URL }} | |
| MEILISEARCH_API_KEY: ${{ secrets.MEILISEARCH_API_KEY }} | |
| run: | | |
| pipenv run ./docs_scraper ./the-examples-book.config.json | |
| purge-cf-cache: | |
| needs: build | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Purge Cloudflare cache | |
| uses: jakejarvis/cloudflare-purge-action@master | |
| env: | |
| CLOUDFLARE_ZONE: ${{ secrets.CLOUDFLARE_ZONE }} | |
| CLOUDFLARE_TOKEN: ${{ secrets.CLOUDFLARE_TOKEN }} |