Specify container image in GitLab CI job instead of globally (#6224)

This commit is contained in:
Sigurd Spieckermann 2023-10-23 09:32:24 +02:00 committed by GitHub
parent 371ed7744c
commit ee9f1f4952
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -152,9 +152,9 @@ contents:
=== "Material for MkDocs"
``` yaml
image: python:latest
pages:
stage: deploy
image: python:latest
script:
- pip install mkdocs-material
- mkdocs build --site-dir public
@ -168,9 +168,9 @@ contents:
=== "Insiders"
``` yaml
image: python:latest
pages:
stage: deploy
image: python:latest
script: # (1)!
- pip install git+https://${GH_TOKEN}@github.com/squidfunk/mkdocs-material-insiders.git
- mkdocs build --site-dir public