Skip to content

Commit a325972

Browse files
committed
fix: remove debug arguments from Windows and Ubuntu platforms in publish workflow; change log level to info for metadata fetching
1 parent 984d35b commit a325972

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@ jobs:
4747
matrix:
4848
include:
4949
- platform: "windows-latest"
50-
args: "--debug"
50+
args: ""
5151
os-name: "windows"
5252
- platform: "ubuntu-22.04"
53-
args: "--debug"
53+
args: ""
5454
os-name: "linux"
5555

5656
runs-on: ${{ matrix.platform }}

src-tauri/src/commands/updater.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ pub mod app_updates {
8282
pub_date: u.date.map(|d| d.to_string()),
8383
});
8484

85-
log_debug!(
85+
log_info!(
8686
"get metadata",
8787
"fetch_update",
8888
meta.as_ref().map(|m| format!("{:?}", m)).as_deref()

0 commit comments

Comments
 (0)