File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 2222 detect-changes :
2323 name : ' Detect folder changes'
2424 runs-on : ubuntu-latest
25+ environment : ${{inputs.environment}}
2526 outputs :
2627 apps-changed : ${{ steps.changes.outputs.apps }}
2728 packages-changed : ${{ steps.changes.outputs.packages }}
7172 name : ' Deploy app ${{ matrix.app }} to ${{ inputs.environment }}'
7273 runs-on : ubuntu-latest
7374 needs : detect-changes
75+ environment : ${{inputs.environment}}
7476 if : needs.detect-changes.outputs.apps-changed == 'true' && needs.detect-changes.outputs.changed-apps != ''
7577 strategy :
7678 matrix :
9496 deploy-packages :
9597 name : ' Deploy package ${{ matrix.package }} to ${{ inputs.environment }}'
9698 runs-on : ubuntu-latest
97- needs : detect-changes
99+ needs : detect-changes
100+ environment : ${{inputs.environment}}
101+
98102 if : needs.detect-changes.outputs.packages-changed == 'true' && needs.detect-changes.outputs.changed-packages != ''
99103 strategy :
100104 matrix :
Original file line number Diff line number Diff line change 1515 if : github.event_name == 'pull_request' || startsWith(github.ref, 'refs/tags/')
1616 with :
1717 workflow_name : ' Test deployment'
18- environment : ' test '
18+ environment : ' main_free '
1919 target : ' test'
2020 secrets :
2121 DATABRICKS_HOST : ${{ secrets.DATABRICKS_HOST }}
2929 if : github.event_name == 'pull_request' || startsWith(github.ref, 'refs/tags/')
3030 with :
3131 workflow_name : ' QA deployment'
32- environment : ' qa '
32+ environment : ' main_free '
3333 target : ' qa'
3434 secrets :
3535 DATABRICKS_HOST : ${{ secrets.DATABRICKS_HOST }}
You can’t perform that action at this time.
0 commit comments