fix of revision #112
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: Dev Env Continuous Deployment Workflow | |
on: | |
push: | |
branches: [ dev ] | |
jobs: | |
create-environment-and-deploy-app: | |
name: Create Environment and Deploy the Application | |
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 | |
# binary-auth: | |
# name: Attest Images | |
# needs: [run-tests] | |
# uses: ./.github/workflows/attest-images.yml | |
# secrets: inherit | |
# raise-pull-request: | |
# name: Raise PR to prod branch | |
# needs: [binary-auth] | |
# uses: ./.github/workflows/raise-pr.yml | |
# secrets: inherit |