Skip to content

Commit

Permalink
Merge pull request #6 from filecoin-project/feature/add-production-de…
Browse files Browse the repository at this point in the history
…ployment

fix
  • Loading branch information
clriesco committed Nov 20, 2023
2 parents ba20998 + e1a029f commit 6417064
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy-to-production.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: Deploy SSA Bot to Lightsail Container Service
name: Deploy SSA Bot to Production Container Service

on:
push:
tags:
- '*'

jobs:
deploy_to_lightsail_container_service:
deploy_to_production_container_service:
runs-on: ubuntu-latest

steps:
Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
"healthCheck": {
"healthyThreshold": 2,
"unhealthyThreshold": 2,
"timeoutSeconds": 5,
"timeoutSeconds": 30,
"intervalSeconds": 60,
"path": "/health",
"successCodes": "200"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy-to-staging.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
name: Deploy SSA Bot to Lightsail Container Service
name: Deploy SSA Bot to Staging Container Service

on:
push:
branches:
- main

jobs:
deploy_to_lightsail_container_service:
deploy_to_staging_container_service:
runs-on: ubuntu-latest

steps:
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
"containerPort": 3000,
"healthCheck": {
"healthyThreshold": 5,
"unhealthyThreshold":52,
"unhealthyThreshold":5,
"timeoutSeconds": 30,
"intervalSeconds": 60,
"path": "/health",
Expand Down

0 comments on commit 6417064

Please sign in to comment.