misc(ci): detect dev profile for debug

This commit is contained in:
Morgan Funtowicz 2025-01-09 14:08:46 +01:00
parent d110ab2aa5
commit 75b9d82555

View File

@ -212,6 +212,7 @@ fn main() {
let build_profile = env::var("PROFILE").unwrap();
let (is_debug, opt_level) = match build_profile.as_ref() {
"debug" => (true, "0"),
"dev" => (true, "0"),
_ => (false, "3"),
};