Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 18 additions & 18 deletions .github/workflows/publish-and-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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'
Loading