Skip to content

Commit

Permalink
Merge pull request #2195 from quadratichq/davidkircos-patch-3
Browse files Browse the repository at this point in the history
Update qa-deploy.yml
  • Loading branch information
davidkircos authored Jan 15, 2025
2 parents abdca96 + 1d1de16 commit 04eae17
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/qa-close.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
# Require previous builds and deployments to finish before starting a new one
# Close can not run concurrently with Create or Update Infrastructure with Pulumi
concurrency:
group: pr-${{ github.event.pull_request.number }}
group: qa

jobs:
teardown:
Expand All @@ -30,7 +30,7 @@ jobs:
pulumi org set-default quadratic
STACK_NAME="preview-pr-${{ env.PR_ID }}"
STACK_NAME="quadratic-qa"
pulumi stack select $STACK_NAME
pulumi config set aws:region us-west-2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/qa-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
# Require previous builds and deployments to finish before starting a new one
# Not sure how Pulumi would handle being terminated when changing a stack.
concurrency:
group: pr-${{ github.event.pull_request.number }}
group: qa

jobs:
infra:
Expand All @@ -35,7 +35,7 @@ jobs:
pulumi org set-default quadratic
STACK_NAME="preview-pr-${{ env.PR_ID }}"
STACK_NAME="quadratic-qa"
if ! pulumi stack ls | grep -q "^$STACK_NAME"; then
echo "Stack $STACK_NAME does not exist. Initializing..."
pulumi stack init $STACK_NAME
Expand Down

0 comments on commit 04eae17

Please sign in to comment.