Skip to content

Commit

Permalink
feat: cd to dev (#376)
Browse files Browse the repository at this point in the history
  • Loading branch information
smrz2001 authored Jun 13, 2024
1 parent 107be36 commit 8152f8f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/cd-to-infra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,4 +105,10 @@ jobs:
make DEPLOY_ENV="$DEPLOY_ENV" DEPLOY_TAG=${{ needs.publish.outputs.deploy_tag }} schedule-k8s-deployment
# Schedule post-deployment tests
make DEPLOY_ENV="$DEPLOY_ENV" TEST_SELECTOR="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=${{ needs.publish.outputs.deploy_tag }} schedule-k8s-deployment
make DEPLOY_ENV="dev" TEST_SELECTOR="fast" schedule-tests
fi
fi

0 comments on commit 8152f8f

Please sign in to comment.