Skip to content

Commit ded78e8

Browse files
committed
deploy is not pat of the image, so lets run it with uvx
1 parent c4b23da commit ded78e8

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/build_and_deploy.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ jobs:
1414
- name: Checkout code
1515
uses: actions/checkout@v3
1616

17+
# Uv is needed for the deployment lint
18+
- name: Install uv
19+
uses: astral-sh/setup-uv@v5
20+
1721
- name: Set up Docker Buildx
1822
uses: docker/setup-buildx-action@v2
1923

@@ -41,7 +45,10 @@ jobs:
4145
run: |
4246
docker run --rm intbot make ci/lint
4347
docker run --rm intbot make ci/type-check
44-
docker run --rm intbot make lint/deploy
48+
49+
50+
- name: Run deployment playbooks lint
51+
run: make lint/deploy
4552

4653
services:
4754
postgres:

0 commit comments

Comments
 (0)