Deploy Subscription App to Staging #16
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy Subscription App to Staging | |
on: | |
workflow_dispatch: | |
jobs: | |
deploy: | |
runs-on: self-hosted | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
npm ci | |
npm run build | |
npm prune --omit=dev | |
npm install @dbos-inc/dbos-cloud@latest | |
- name: Deploy to staging | |
run: python3 scripts/dbos_deploy.py | |
env: | |
DBOS_DOMAIN: staging.dev.dbos.dev | |
DBOS_AUTH0_CLIENT_SECRET: ${{secrets.DBOS_AUTH0_TEST_CLIENT_SECRET}} | |
DBOS_DEPLOY_PASSWORD: ${{secrets.DBOS_CLOUD_SUBSCRIPTION_PASSWORD}} | |
DBOS_APP_DB_NAME: testsubscription | |
STRIPE_SECRET_KEY: ${{secrets.STRIPE_TEST_SECRET_KEY}} | |
STRIPE_WEBHOOK_SECRET: ${{secrets.STRIPE_TEST_WEBHOOK_SECRET}} | |
STRIPE_DBOS_PRO_PRICE: ${{secrets.STRIPE_TEST_PRO_PRICE}} |