Skip to content

Commit

Permalink
Add self-hosted deploy options for aselo dev deploy job
Browse files Browse the repository at this point in the history
  • Loading branch information
stephenhand committed Oct 9, 2024
1 parent 4ac81a2 commit c4f4d45
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/flex-aselo-development-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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' }}

0 comments on commit c4f4d45

Please sign in to comment.