© 2026 InterSystems Corporation, Cambridge, MA. All rights reserved.Privacy & TermsGuaranteeSection 508Contest Terms
Initial Release
In your repository create file .github/workflows/deploy.yml with content. Replace <name-of-demo> with the domain name, which will be used before .demo.community.intersystems.com. Ask for deployment key and set it to secrets as SERVICE_ACCOUNT_KEY
name: Cloud Run Deployon: push: branches: - master - main workflow_dispatch:
jobs: deploy: uses: intersystems-community/demo-deployment/.github/workflows/deployment.yml@master with: name: ## Optional # memory: 1Gi # port: 8081 # persistence: true # namespace: demo secrets: SERVICE_ACCOUNT_KEY: ${{ secrets.SERVICE_ACCOUNT_KEY }} ## Optional # CUSTOM_VARS_LIST: "var1=${{ secrets.CUSTOM_VAR1 }},var2=value2,..."