feat: refactor dev branch so that it can be merged to prod #2
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: Prod Continuous Deployment Workflow | |
# on: | |
# push: | |
# branches: [ prod ] | |
# jobs: | |
# create-environment-and-deploy-app: | |
# name: Create Environment and Deploy App | |
# uses: ./.github/workflows/create-cluster.yml | |
# secrets: inherit | |
# run-tests: | |
# name: Run Integration Tests | |
# needs: [create-environment-and-deploy-app] | |
# uses: ./.github/workflows/run-tests.yml | |
# secrets: inherit |