Skip to content

Commit 2fb9752

Browse files
committed
fix: env
2 parents da8903d + 3efeb29 commit 2fb9752

2 files changed

Lines changed: 24 additions & 3 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ on:
66
- master
77

88
env:
9-
AWS_REGION: us-west-1
10-
ECR_REGISTRY: ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ env.AWS_REGION }}.amazonaws.com
9+
AWS_REGION: ${{ secrets.AWS_REGION }}
10+
ECR_REGISTRY: ${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ secrets.AWS_REGION }}.amazonaws.com
1111
ECR_REPO_SERVER: chat-pilot-ai/server
1212
ECR_REPO_APP: chat-pilot-ai/app
1313
ECS_CLUSTER: my-cluster
@@ -27,7 +27,7 @@ jobs:
2727
with:
2828
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
2929
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
30-
aws-region: ${{ env.AWS_REGION }}
30+
aws-region: ${{ secrets.AWS_REGION }}
3131

3232
- name: Login to Amazon ECR
3333
run: |

SECURITY.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Security Policy
2+
3+
## Supported Versions
4+
5+
Use this section to tell people about which versions of your project are
6+
currently being supported with security updates.
7+
8+
| Version | Supported |
9+
| ------- | ------------------ |
10+
| 5.1.x | :white_check_mark: |
11+
| 5.0.x | :x: |
12+
| 4.0.x | :white_check_mark: |
13+
| < 4.0 | :x: |
14+
15+
## Reporting a Vulnerability
16+
17+
Use this section to tell people how to report a vulnerability.
18+
19+
Tell them where to go, how often they can expect to get an update on a
20+
reported vulnerability, what to expect if the vulnerability is accepted or
21+
declined, etc.

0 commit comments

Comments
 (0)