From cba945375c3aeac30f00a8b8f59dcc9de9f2d5c0 Mon Sep 17 00:00:00 2001 From: woutervermeer Date: Wed, 11 Mar 2026 08:38:29 +0000 Subject: [PATCH 1/3] Update .gitea/workflows/deploy.yml --- .gitea/workflows/deploy.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index 6f925f9..7939c2d 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -31,5 +31,8 @@ jobs: echo "Building containers..." make prod + echo "Running Django deploy check" + docker compose run --rm web python manage.py check --deploy + echo "Deployment complete." EOF \ No newline at end of file From 41a61fb3187c477524f87b2362289da484e802da Mon Sep 17 00:00:00 2001 From: woutervermeer Date: Wed, 11 Mar 2026 08:38:41 +0000 Subject: [PATCH 2/3] Update .gitea/workflows/build_test.yaml --- .gitea/workflows/build_test.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitea/workflows/build_test.yaml b/.gitea/workflows/build_test.yaml index b959ef6..f71de77 100644 --- a/.gitea/workflows/build_test.yaml +++ b/.gitea/workflows/build_test.yaml @@ -4,6 +4,7 @@ on: push: branches: - pre-prod + - main pull_request: jobs: From c1aa69dd8b6a6a02115dd08d69641068218563bd Mon Sep 17 00:00:00 2001 From: woutervermeer Date: Wed, 11 Mar 2026 08:49:20 +0000 Subject: [PATCH 3/3] Update .gitea/workflows/build_test.yaml --- .gitea/workflows/build_test.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitea/workflows/build_test.yaml b/.gitea/workflows/build_test.yaml index f71de77..e576924 100644 --- a/.gitea/workflows/build_test.yaml +++ b/.gitea/workflows/build_test.yaml @@ -16,3 +16,6 @@ jobs: - name: Build and test run: make test + + - name: Build + run: make prod \ No newline at end of file