Skip to content

Commit c61a72a

Browse files
authored
Merge pull request #108 from filecoin-project/fix/update-backend-region-deployment
Change backend region deployment, bump version
2 parents 0722c52 + d87ab52 commit c61a72a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/deploy_to_prod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,6 @@ jobs:
7676
# Deploy to Lightsail Container Service
7777
aws lightsail create-container-service-deployment \
7878
--service-name fp-core-prod \
79-
--region us-east-2 \
79+
--region us-east-1 \
8080
--containers file://containers.json \
8181
--public-endpoint file://public-endpoint.json

.github/workflows/deploy_to_staging.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,6 @@ jobs:
8585
# Deploy to Lightsail Container Service
8686
aws lightsail create-container-service-deployment \
8787
--service-name fp-core \
88-
--region us-east-2 \
88+
--region us-east-1 \
8989
--containers file://containers.json \
9090
--public-endpoint file://public-endpoint.json

fplus-http-server/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "fplus-http-server"
33
authors = ["jbesraa", "kokal33", "clriesco"]
4-
version = "1.0.15"
4+
version = "1.0.16"
55
description = "FPlus main http module"
66
license = "MIT OR Apache-2.0"
77
edition = "2021"
@@ -20,7 +20,7 @@ actix-cors = "0.6.4"
2020
reqwest = { version = "0.11.18", features = ["json"] }
2121
futures = "0.3.28"
2222
dotenv = "0.15.0"
23-
fplus-lib = { path = "../fplus-lib", version = "1.0.15" }
23+
fplus-lib = { path = "../fplus-lib", version = "1.0.16" }
2424
anyhow = "1.0.75"
2525
async-trait = "0.1.73"
2626
uuidv4 = "1.0.0"

fplus-lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "fplus-lib"
33
authors = ["jbesraa", "kokal33", "clriesco"]
4-
version = "1.0.15"
4+
version = "1.0.16"
55
edition = "2021"
66
description = "FPlus library/helper files"
77
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)