Skip to content

Commit

Permalink
fix(cli): package name and dockerfile path (#394)
Browse files Browse the repository at this point in the history
Signed-off-by: KeisukeYamashita <[email protected]>
  • Loading branch information
KeisukeYamashita authored Dec 3, 2024
1 parent 28c3763 commit c5465b5
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 11 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@ jobs:
- uses: docker/build-push-action@v6
with:
context: ./cli
context: .
file: ./cli/Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
Expand Down
16 changes: 8 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "cli"
name = "commitlint-rs"
description = "CLI tool to lint commits by Conventional Commits"
documentation.workspace = true
authors.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion schema/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ edition.workspace = true

[dependencies]
clap = { version = "4.5.21", features = ["derive"] }
cli = { path = "../cli", features = ["schemars"] }
cli = { path = "../cli", features = ["schemars"], package = "commitlint-rs" }
schemars = { version = "0.8.21" }
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"

0 comments on commit c5465b5

Please sign in to comment.