Skip to content

Commit

Permalink
chore(ci): fix ci problem
Browse files Browse the repository at this point in the history
  • Loading branch information
jjeffcaii committed Nov 29, 2024
1 parent f9586b0 commit 74ba4de
Show file tree
Hide file tree
Showing 9 changed files with 45 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/rust-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,21 +23,25 @@ jobs:
override: true

- name: Publish capybara-util
if: always()
run: cargo publish --token ${CRATES_TOKEN} -p capybara-util
env:
CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }}

- name: Publish capybara-etc
if: always()
run: cargo publish --token ${CRATES_TOKEN} -p capybara-etc
env:
CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }}

- name: Publish capybara-core
if: always()
run: cargo publish --token ${CRATES_TOKEN} -p capybara-core
env:
CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }}

- name: Publish capybara
if: always()
run: cargo publish --token ${CRATES_TOKEN} -p capybara
env:
CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }}
10 changes: 10 additions & 0 deletions capybara-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@
name = "capybara-core"
version = "0.0.1-alpha.1"
edition = "2021"
license = "MIT"
readme = "README.md"
repository = "https://github.com/jjeffcaii/capybara"
homepage = "https://github.com/jjeffcaii/capybara"
description = "A reverse proxy in Rust, which is inspired from Nginx/OpenResty/Envoy."
include = [
"**/*.rs",
"**/*.html",
"Cargo.toml",
]

[dev-dependencies]
pretty_env_logger = "0.5.0"
Expand Down
1 change: 1 addition & 0 deletions capybara-core/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Capybara Core
9 changes: 9 additions & 0 deletions capybara-etc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
name = "capybara-etc"
version = "0.0.1-alpha.1"
edition = "2021"
license = "MIT"
readme = "README.md"
repository = "https://github.com/jjeffcaii/capybara"
homepage = "https://github.com/jjeffcaii/capybara"
description = "A reverse proxy in Rust, which is inspired from Nginx/OpenResty/Envoy."
include = [
"**/*.rs",
"Cargo.toml",
]

[dev-dependencies]
pretty_env_logger = "0.5.0"
Expand Down
1 change: 1 addition & 0 deletions capybara-etc/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Capybara Etc
9 changes: 9 additions & 0 deletions capybara-util/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@ name = "capybara-util"
version = "0.0.1-alpha.1"
edition = "2021"
build = "build.rs"
license = "MIT"
readme = "README.md"
repository = "https://github.com/jjeffcaii/capybara"
homepage = "https://github.com/jjeffcaii/capybara"
description = "A reverse proxy in Rust, which is inspired from Nginx/OpenResty/Envoy."
include = [
"**/*.rs",
"Cargo.toml",
]

[build-dependencies]
string_cache_codegen = "0.5"
Expand Down
1 change: 1 addition & 0 deletions capybara-util/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Capybara Util
9 changes: 9 additions & 0 deletions capybara/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@
name = "capybara"
version = "0.0.1-alpha.1"
edition = "2021"
license = "MIT"
readme = "README.md"
repository = "https://github.com/jjeffcaii/capybara"
homepage = "https://github.com/jjeffcaii/capybara"
description = "A reverse proxy in Rust, which is inspired from Nginx/OpenResty/Envoy."
include = [
"**/*.rs",
"Cargo.toml",
]

[dev-dependencies]
pretty_env_logger = "0.5.0"
Expand Down
1 change: 1 addition & 0 deletions capybara/README.md

0 comments on commit 74ba4de

Please sign in to comment.