Skip to content

Commit

Permalink
docs: missing entrypoint in gitlab integration
Browse files Browse the repository at this point in the history
GitLab assumes the entrypoint is `sh`, resulting in a failure.
  • Loading branch information
Tsafaras authored Nov 13, 2024
1 parent 709e45f commit cd966e0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs/guides/integration/gitlab.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ stages:

uv:
stage: analysis
image: ghcr.io/astral-sh/uv:$UV_VERSION-python$PYTHON_VERSION-$BASE_LAYER
image:
name: ghcr.io/astral-sh/uv:$UV_VERSION-python$PYTHON_VERSION-$BASE_LAYER
entrypoint: [""]
script:
# your `uv` commands
```
Expand Down

0 comments on commit cd966e0

Please sign in to comment.