Skip to content

Commit

Permalink
fix: deploy to k8s qa when deploying to dev
Browse files Browse the repository at this point in the history
  • Loading branch information
smrz2001 committed Oct 18, 2024
1 parent b8b44e1 commit b0396d4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,10 @@ jobs:
# Schedule post-deployment tests
make DEPLOY_ENV="$DEPLOY_ENV" TEST_SELECTOR="correctness/fast" schedule-tests
# If deploying to QA, also deploy to Dev and run post-deployment tests.
if [[ "$DEPLOY_ENV" == "qa" ]]; then
make DEPLOY_ENV="dev" DEPLOY_TAG=${{ env.SHA }} schedule-k8s-deployment
make DEPLOY_ENV="dev" TEST_SELECTOR="correctness/fast" schedule-tests
# If deploying to Dev, also deploy to QA and run post-deployment tests.
if [[ "$DEPLOY_ENV" == "dev" ]]; then
make DEPLOY_ENV="qa" DEPLOY_TAG=${{ env.SHA }} schedule-k8s-deployment
make DEPLOY_ENV="qa" TEST_SELECTOR="correctness/fast" schedule-tests
fi
-
name: Set commit status "success"
Expand Down

0 comments on commit b0396d4

Please sign in to comment.