Skip to content

Commit d7496b5

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

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

@@ -42,7 +46,10 @@ jobs:
4246
run: |
4347
docker run --rm intbot make ci/lint
4448
docker run --rm intbot make ci/type-check
45-
docker run --rm intbot make lint/deploy
49+
50+
51+
- name: Run deployment playbooks lint
52+
run: make lint/deploy
4653

4754
services:
4855
postgres:

0 commit comments

Comments
 (0)