Skip to content

Commit b3141aa

Browse files
committed
fix(ci): push :dev ECR tag when building from dev branch
1 parent 4aacc8e commit b3141aa

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,8 @@ jobs:
109109
# ECR tags (always build for ECR)
110110
if [ "${{ github.ref }}" = "refs/heads/main" ]; then
111111
ECR_TAG="latest"
112+
elif [ "${{ github.ref }}" = "refs/heads/dev" ]; then
113+
ECR_TAG="dev"
112114
else
113115
ECR_TAG="staging"
114116
fi

0 commit comments

Comments
 (0)