Skip to content

Commit

Permalink
fix(ci): reverts ci changes to allow staging updates (#1084)
Browse files Browse the repository at this point in the history
  • Loading branch information
seaerchin authored Jan 8, 2024
1 parent d03393d commit e08fa8a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,8 @@ jobs:
import os
ref = os.environ['GITHUB_REF']
prod = os.environ['PRODUCTION_BRANCH']
if ref == prod:
staging = os.environ['STAGING_BRANCH']
if ref == prod or ref == staging:
print('::set-output name=proceed::true')
else:
print('::set-output name=proceed::false')
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/deploy_staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ concurrency:
on:
push:
branches:
- staging
# TODO: Update this to allow `staging` once ecs deploys work
# - staging
- feat/ecs

jobs:
Expand Down

0 comments on commit e08fa8a

Please sign in to comment.