4343 notify-start :
4444 runs-on : ubuntu-latest
4545 steps :
46- - name : Configure AWS credentials
47- uses : aws-actions/configure-aws-credentials@v4
48- with :
49- role-to-assume : ${{ secrets.AWS_ROLE }}
50- aws-region : ${{ inputs.aws-region || 'us-east-1' }}
51-
52-
5346 - name : Load Slack webhook
5447 uses : cmsgov/cdap/actions/aws-params-env-action@main
5548 with :
7568 build-release :
7669 needs : notify-start
7770 if : ${{ github.ref_name == github.event.repository.default_branch }}
78- uses : ./.github/workflows/build-release.yml
71+ # uses: ./.github/workflows/build-release.yml
72+ uses : ./.github/workflows/dummy-build-release.yml
7973 with :
8074 releaseVersion : ${{ inputs.release-version }}
8175 developmentVersion : ${{ inputs.development-version }}
8680 # DEPLOYMENTS
8781 # -------------------------
8882 deploy-platform :
89- uses : ./.github/workflows/deploy-platform-services.yml
83+ # uses: ./.github/workflows/deploy-platform-services.yml
84+ uses : ./.github/workflows/dummy-deploy-platform-services.yml
9085 needs : build-release
9186 strategy :
9287 matrix :
@@ -97,23 +92,26 @@ jobs:
9792 secrets : inherit
9893
9994 deploy-to-test :
100- uses : ./.github/workflows/deploy-env-services.yml
95+ # uses: ./.github/workflows/deploy-env-services.yml
96+ uses : ./.github/workflows/dummy-deploy-env-services.yml
10197 needs : [build-release, deploy-platform]
10298 with :
10399 bfd-env : test
104100 git-ref : refs/tags/${{ needs.build-release.outputs.bfd_release }}
105101 secrets : inherit
106102
107103 deploy-to-sandbox :
108- uses : ./.github/workflows/deploy-env-services.yml
104+ # uses: ./.github/workflows/deploy-env-services.yml
105+ uses : ./.github/workflows/dummy-deploy-env-services.yml
109106 needs : [build-release, deploy-to-test]
110107 with :
111108 bfd-env : sandbox
112109 git-ref : refs/tags/${{ needs.build-release.outputs.bfd_release }}
113110 secrets : inherit
114111
115112 deploy-to-prod :
116- uses : ./.github/workflows/deploy-env-services.yml
113+ # uses: ./.github/workflows/deploy-env-services.yml
114+ uses : ./.github/workflows/dummy-deploy-env-services.yml
117115 needs : [build-release, deploy-to-sandbox]
118116 with :
119117 bfd-env : prod
@@ -135,12 +133,6 @@ jobs:
135133 if : always()
136134
137135 steps :
138- - name : Configure AWS credentials
139- uses : aws-actions/configure-aws-credentials@v4
140- with :
141- role-to-assume : ${{ secrets.AWS_ROLE }}
142- aws-region : ${{ inputs.aws-region || 'us-east-1' }}
143-
144136 - name : Load Slack webhook
145137 uses : cmsgov/cdap/actions/aws-params-env-action@main
146138 with :
0 commit comments