Production Deployment #11
Workflow file for this run
This file contains hidden or 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: Production Deployment | |
| on: [workflow_dispatch] | |
| jobs: | |
| # | |
| # OneBlink Tenant | |
| # | |
| OneBlinkProduction: | |
| name: Production Deployment (OneBlink) | |
| uses: ./.github/workflows/deployment.yml | |
| with: | |
| CLI: oneblink | |
| SCOPE: oneblink-data-sources.api.oneblink.io | |
| ENV: prod | |
| ACCESS_KEY: ${{ vars.OB_ACCESS_KEY }} | |
| secrets: | |
| SECRET_KEY: ${{ secrets.OB_SECRET_KEY }} | |
| # | |
| # CivicPlus Tenant | |
| # | |
| CivicPlusProduction: | |
| name: Production Deployment (CivicPlus) | |
| uses: ./.github/workflows/deployment.yml | |
| with: | |
| CLI: civicplus | |
| SCOPE: oneblink-data-sources.api.transform.civicplus.com | |
| ENV: prod | |
| ACCESS_KEY: ${{ vars.CP_ACCESS_KEY }} | |
| secrets: | |
| SECRET_KEY: ${{ secrets.CP_SECRET_KEY }} |