Skip to content

Commit 19b96ff

Browse files
authored
Disable debug release (#51)
* Bump git-ai crate version to 1.0.6 in Cargo.lock * Update hook.rs for improved performance and bug fixes 🤖
1 parent 09051d0 commit 19b96ff

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/workflows/cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
run: |
7070
cargo build \
7171
-Z unstable-options \
72-
--profile dev \
72+
--profile release-with-debug \
7373
--artifact-dir bin \
7474
--target ${{ matrix.target }}
7575

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "git-ai"
3-
version = "1.0.6"
3+
version = "1.0.7"
44
edition = "2021"
55
description = "Git AI: Automates commit messages using ChatGPT. Stage your files, and Git AI generates the messages."
66
license = "MIT"
@@ -101,3 +101,7 @@ lto = true
101101
[profile.release.package."*"]
102102
codegen-units = 1
103103
opt-level = 3
104+
105+
[profile.release-with-debug]
106+
inherits = "release"
107+
debug = true

0 commit comments

Comments
 (0)