diff --git a/.github/workflows/publish-and-deploy.yaml b/.github/workflows/publish-and-deploy.yaml index f47821de..c7be3efb 100644 --- a/.github/workflows/publish-and-deploy.yaml +++ b/.github/workflows/publish-and-deploy.yaml @@ -25,24 +25,24 @@ jobs: secrets: inherit if: github.ref == 'refs/heads/main' - # deploy_to_dev3: - # name: Deploy to dev 3 - # uses: ./.github/workflows/deploy-to-k8s.yaml - # with: - # environment: dev3 - # useTag: main - # secrets: inherit - # needs: push_to_registry_prod - # if: github.ref == 'refs/heads/main' + deploy_to_dev3: + name: Deploy to dev 3 + uses: ./.github/workflows/deploy-to-k8s.yaml + with: + environment: dev3 + useTag: main + secrets: inherit + needs: push_to_registry_prod + if: github.ref == 'refs/heads/main' - # integration_test_dev3: - # name: Integration test dev 3 - # uses: ./.github/workflows/run-integ-tests.yaml - # with: - # environment: dev3 - # secrets: inherit - # needs: deploy_to_dev3 - # if: github.ref == 'refs/heads/main' + integration_test_dev3: + name: Integration test dev 3 + uses: ./.github/workflows/run-integ-tests.yaml + with: + environment: dev3 + secrets: inherit + needs: deploy_to_dev3 + if: github.ref == 'refs/heads/main' deploy_to_prod2: name: Deploy to prod2 @@ -51,5 +51,5 @@ jobs: environment: prod2 useTag: main secrets: inherit - needs: push_to_registry_prod + needs: integration_test_dev3 if: github.ref == 'refs/heads/main'