Skip to content

Commit

Permalink
Specify container image in GitLab CI job instead of globally (#6224)
Browse files Browse the repository at this point in the history
  • Loading branch information
sisp authored Oct 23, 2023
1 parent 371ed77 commit ee9f1f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/publishing-your-site.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit ee9f1f4

Please sign in to comment.