Continuous Deployment (Internal Testnet) #83
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: Continuous Deployment (Internal Testnet) | |
# run after every successful CI job of new commits to the main branch | |
on: | |
workflow_run: | |
workflows: [Continuous Integration (Main Branch)] | |
types: | |
- completed | |
jobs: | |
upgrade-internal-testnet: | |
# only start cd pipeline if last ci run was successful | |
if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
uses: ./.github/workflows/cd-upgrade-proxy-service.yml | |
with: | |
aws-region: us-east-1 | |
service-name: kava-internal-testnet-proxy-service | |
cluster-name: kava-internal-testnet-proxy-service | |
container-name: kava-internal-testnet-proxy-service | |
task-family-name: kava-internal-testnet-proxy-service | |
secrets: inherit |