Skip to content

Commit 956f61f

Browse files
authored
Merge pull request #110 from filecoin-project/fix/deployment-to-main
Added bot user to secrets and deployment
2 parents 8f23e4c + 36bb02e commit 956f61f

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/deploy_to_prod.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@ jobs:
5454
"GITHUB_APP_ID": "${{secrets.GH_APP_ID}}",
5555
"GITHUB_INSTALLATION_ID": "${{secrets.GH_INSTALLATION_ID}}",
5656
"FILPLUS_ENV": "prod",
57-
"RUST_LOG": "debug"
57+
"RUST_LOG": "debug",
58+
"BOT_USER": "${{secrets.BOT_USER}}"
5859
}
5960
}
6061
}' > containers.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.17"
4+
version = "1.0.18"
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.17" }
23+
fplus-lib = { path = "../fplus-lib", version = "1.0.18" }
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.17"
4+
version = "1.0.18"
55
edition = "2021"
66
description = "FPlus library/helper files"
77
license = "MIT OR Apache-2.0"

0 commit comments

Comments
 (0)