Skip to content

Commit bbe6dec

Browse files
authored
Update deploy to prod (#11044)
1 parent c2d092d commit bbe6dec

File tree

1 file changed

+25
-1
lines changed

1 file changed

+25
-1
lines changed

.github/workflows/build_deploy_prod.yml

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,17 @@ jobs:
116116
push-cache: true
117117
cache-only: true
118118

119+
# Call our deployment workflow
120+
# deploy:
121+
# name: Deploy to Prod
122+
# needs: [build]
123+
# uses: ./.github/workflows/deploy.yml
124+
# with:
125+
# deploy-envs: '["prod"]'
126+
# image-tag: ${{ github.event.release.tag_name }}
127+
# prod: true
128+
# secrets: inherit
129+
119130
# Trigger private repo to deploy the docker desktop extension
120131
trigger_dd_extension_release:
121132
name: Deploy Docker Desktop Extension
@@ -137,11 +148,24 @@ jobs:
137148
workflow_file_name: bump-mindsdb-version.yml
138149
ref: main
139150
client_payload: '{"image-tag": "${{ env.CI_REF_NAME }}"}'
151+
152+
# Run integration tests
153+
# TODO: Run these against the deployed environment
154+
# run_tests:
155+
# name: Run Integration Tests
156+
# needs: [deploy]
157+
# concurrency:
158+
# group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}-tests
159+
# cancel-in-progress: true
160+
# uses: ./.github/workflows/test_on_deploy.yml
161+
# with:
162+
# deploy-env: prod
163+
# secrets: inherit
140164

141165
slack_message:
142166
if: always()
143167
name: Notify Slack
144-
needs: [run_tests]
168+
# needs: [run_tests]
145169
runs-on: mdb-dev
146170
steps:
147171
- name: Notify of failing tests

0 commit comments

Comments
 (0)