From c4f4d4514d2784b5b5776160cc38cb87dbd5373a Mon Sep 17 00:00:00 2001 From: Stephen Hand Date: Wed, 9 Oct 2024 15:46:22 +0100 Subject: [PATCH] Add self-hosted deploy options for aselo dev deploy job --- .github/workflows/flex-aselo-development-deploy.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/flex-aselo-development-deploy.yml b/.github/workflows/flex-aselo-development-deploy.yml index 1ef4487e2..b7ed1e458 100644 --- a/.github/workflows/flex-aselo-development-deploy.yml +++ b/.github/workflows/flex-aselo-development-deploy.yml @@ -17,6 +17,9 @@ name: Flex Aselo Development Deploy # Controls when the action will run. on: workflow_dispatch: + self-hosted-deploy: + description: If set to true, we will point the account at our s3 hosted version of the plugin rather than uploading it to Twilio. + type: boolean schedule: - cron: 0 0 * * 0 @@ -27,4 +30,4 @@ jobs: with: helpline_code: AS environment_code: development - self-hosted-deploy: true + self-hosted-deploy: ${{ inputs.self-hosted-deploy == 'false' && 'false' || 'true' }}