From 5b14d11c0fc656be6a6a7f5ed7bc49c8f9a92601 Mon Sep 17 00:00:00 2001 From: Mikhail Khomenko Date: Sun, 5 Oct 2025 14:45:47 +0300 Subject: [PATCH 1/2] Configure domain base --- .github/workflows/deployment.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deployment.yml b/.github/workflows/deployment.yml index 8d45c0d..d1ead1d 100644 --- a/.github/workflows/deployment.yml +++ b/.github/workflows/deployment.yml @@ -7,6 +7,11 @@ on: description: 'Domain name of deployment, before `.demo.community.intersystems.com`' required: true type: string + domain_base: + description: 'Base domain for deployment' + required: false + type: string + default: 'demo.community.intersystems.com' namespace: description: 'Namespace to deploy to' required: false @@ -48,12 +53,17 @@ on: description: 'Domain name of deployment, before `.demo.community.intersystems.com`' required: true type: string + domain_base: + description: 'Base domain for deployment' + required: false + type: string + default: 'demo.community.intersystems.com' env: # Change this section according to your needs IMAGE_NAME: ${{ inputs.name }} SERVICE: ${{ inputs.name }} - DOMAIN_NAME: ${{ inputs.name }}.demo.community.intersystems.com + DOMAIN_NAME: ${{ inputs.name }}.${{ inputs.domain_base }} # Leave this section untouched PROJECT_ID: iris-community-demos From 3a61da945fec36146a6372edadf3ada0b45c7c04 Mon Sep 17 00:00:00 2001 From: Mikhail Khomenko Date: Sun, 5 Oct 2025 14:47:25 +0300 Subject: [PATCH 2/2] Added README description --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 2d12bf5..9855efc 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,7 @@ jobs: with: name: ## Optional + # domain_base: demo.community.intersystems.com # memory: 1Gi # port: 8081 # persistence: true