Skip to content

Commit

Permalink
fix: workflow deploy on tag (#35)
Browse files Browse the repository at this point in the history
* fix: workflow deploy on tag

* change to double quotes
  • Loading branch information
gagantrivedi authored Sep 21, 2022
1 parent 6fa1e02 commit e8dc7f4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/sse-deploy-production-ecs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ name: Deploy SSE to Production ECS

on:
push:
branches:
- main
tags:
- "*"
paths:
- "src/**"
- ".github/**"
- 'infrastructure/aws/production/**'
- "infrastructure/aws/production/**"
jobs:
deploy-production-ecs:
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sse-deploy-staging-ecs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ on:
branches:
- main
paths:
- "api/**"
- "src/**"
- ".github/**"
- 'infrastructure/aws/staging/**'
- "infrastructure/aws/staging/**"

jobs:
deploy-staging-ecs:
Expand Down

0 comments on commit e8dc7f4

Please sign in to comment.