👷 Update CI to build MkDocs Insiders only when the secrets are available, for Dependabot (#683)

This commit is contained in:
Sebastián Ramírez 2023-10-29 12:51:26 +04:00 committed by GitHub
parent 31ed654dd0
commit 94f3765fcf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -63,17 +63,17 @@ jobs:
if: steps.cache.outputs.cache-hit != 'true' if: steps.cache.outputs.cache-hit != 'true'
run: python -m poetry install run: python -m poetry install
- name: Install Material for MkDocs Insiders - name: Install Material for MkDocs Insiders
if: ( github.event_name != 'pull_request' || github.event.pull_request.head.repo.fork == false ) && steps.cache.outputs.cache-hit != 'true' if: ( github.event_name != 'pull_request' || github.secret_source == 'Actions' ) && steps.cache.outputs.cache-hit != 'true'
run: python -m poetry run pip install git+https://${{ secrets.SQLMODEL_MKDOCS_MATERIAL_INSIDERS }}@github.com/squidfunk/mkdocs-material-insiders.git run: python -m poetry run pip install git+https://${{ secrets.SQLMODEL_MKDOCS_MATERIAL_INSIDERS }}@github.com/squidfunk/mkdocs-material-insiders.git
- uses: actions/cache@v3 - uses: actions/cache@v3
with: with:
key: mkdocs-cards-${{ github.ref }} key: mkdocs-cards-${{ github.ref }}
path: .cache path: .cache
- name: Build Docs - name: Build Docs
if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork == true if: github.event_name == 'pull_request' && github.secret_source != 'Actions'
run: python -m poetry run mkdocs build run: python -m poetry run mkdocs build
- name: Build Docs with Insiders - name: Build Docs with Insiders
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.fork == false if: github.event_name != 'pull_request' || github.secret_source == 'Actions'
run: python -m poetry run mkdocs build --config-file mkdocs.insiders.yml run: python -m poetry run mkdocs build --config-file mkdocs.insiders.yml
- uses: actions/upload-artifact@v3 - uses: actions/upload-artifact@v3
with: with: