Skip to content

Commit 74ba4de

Browse files
committed
chore(ci): fix ci problem
1 parent f9586b0 commit 74ba4de

File tree

9 files changed

+45
-0
lines changed

9 files changed

+45
-0
lines changed

.github/workflows/rust-publish.yml

+4
Original file line numberDiff line numberDiff line change
@@ -23,21 +23,25 @@ jobs:
2323
override: true
2424

2525
- name: Publish capybara-util
26+
if: always()
2627
run: cargo publish --token ${CRATES_TOKEN} -p capybara-util
2728
env:
2829
CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }}
2930

3031
- name: Publish capybara-etc
32+
if: always()
3133
run: cargo publish --token ${CRATES_TOKEN} -p capybara-etc
3234
env:
3335
CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }}
3436

3537
- name: Publish capybara-core
38+
if: always()
3639
run: cargo publish --token ${CRATES_TOKEN} -p capybara-core
3740
env:
3841
CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }}
3942

4043
- name: Publish capybara
44+
if: always()
4145
run: cargo publish --token ${CRATES_TOKEN} -p capybara
4246
env:
4347
CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }}

capybara-core/Cargo.toml

+10
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22
name = "capybara-core"
33
version = "0.0.1-alpha.1"
44
edition = "2021"
5+
license = "MIT"
6+
readme = "README.md"
7+
repository = "https://github.com/jjeffcaii/capybara"
8+
homepage = "https://github.com/jjeffcaii/capybara"
9+
description = "A reverse proxy in Rust, which is inspired from Nginx/OpenResty/Envoy."
10+
include = [
11+
"**/*.rs",
12+
"**/*.html",
13+
"Cargo.toml",
14+
]
515

616
[dev-dependencies]
717
pretty_env_logger = "0.5.0"

capybara-core/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Capybara Core

capybara-etc/Cargo.toml

+9
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22
name = "capybara-etc"
33
version = "0.0.1-alpha.1"
44
edition = "2021"
5+
license = "MIT"
6+
readme = "README.md"
7+
repository = "https://github.com/jjeffcaii/capybara"
8+
homepage = "https://github.com/jjeffcaii/capybara"
9+
description = "A reverse proxy in Rust, which is inspired from Nginx/OpenResty/Envoy."
10+
include = [
11+
"**/*.rs",
12+
"Cargo.toml",
13+
]
514

615
[dev-dependencies]
716
pretty_env_logger = "0.5.0"

capybara-etc/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Capybara Etc

capybara-util/Cargo.toml

+9
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@ name = "capybara-util"
33
version = "0.0.1-alpha.1"
44
edition = "2021"
55
build = "build.rs"
6+
license = "MIT"
7+
readme = "README.md"
8+
repository = "https://github.com/jjeffcaii/capybara"
9+
homepage = "https://github.com/jjeffcaii/capybara"
10+
description = "A reverse proxy in Rust, which is inspired from Nginx/OpenResty/Envoy."
11+
include = [
12+
"**/*.rs",
13+
"Cargo.toml",
14+
]
615

716
[build-dependencies]
817
string_cache_codegen = "0.5"

capybara-util/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Capybara Util

capybara/Cargo.toml

+9
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22
name = "capybara"
33
version = "0.0.1-alpha.1"
44
edition = "2021"
5+
license = "MIT"
6+
readme = "README.md"
7+
repository = "https://github.com/jjeffcaii/capybara"
8+
homepage = "https://github.com/jjeffcaii/capybara"
9+
description = "A reverse proxy in Rust, which is inspired from Nginx/OpenResty/Envoy."
10+
include = [
11+
"**/*.rs",
12+
"Cargo.toml",
13+
]
514

615
[dev-dependencies]
716
pretty_env_logger = "0.5.0"

capybara/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../README.md

0 commit comments

Comments
 (0)