From 857829796e5999dc6aa10f18be742a694a94ead0 Mon Sep 17 00:00:00 2001 From: Aaron Gundel Date: Thu, 24 Oct 2024 15:15:44 -0600 Subject: [PATCH] update hosts, run deploy again --- .github/workflows/build-ci-container.yml | 1 + arches_lingo/hosts.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-ci-container.yml b/.github/workflows/build-ci-container.yml index 436b2c73..dd353481 100644 --- a/.github/workflows/build-ci-container.yml +++ b/.github/workflows/build-ci-container.yml @@ -4,6 +4,7 @@ on: push: branches: - "deploy" + - "test/*" repository_dispatch: type: - deploy_project diff --git a/arches_lingo/hosts.py b/arches_lingo/hosts.py index c0c79c55..8d11487c 100644 --- a/arches_lingo/hosts.py +++ b/arches_lingo/hosts.py @@ -2,6 +2,7 @@ from django_hosts import patterns, host host_patterns = patterns( - "", host(re.sub(r"_", r"-", r"arches_lingo"), "arches_lingo.urls", name="arches_lingo"), + host(r"arches", "arches.urls", name="arches"), + "", )