Skip to content

Commit

Permalink
Build on Ubuntu 20.04 and remove pretty print
Browse files Browse the repository at this point in the history
  • Loading branch information
saltydk committed Jul 23, 2024
1 parent 7cb0d8c commit 295b3b0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ permissions:

jobs:
build-and-release:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "saltbox-facts"
version = "1.0.2"
version = "1.0.3"
edition = "2021"

[profile.dev]
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
"timezone": timezone_data
});

println!("{}", serde_json::to_string_pretty(&result)?);
println!("{}", serde_json::to_string(&result)?);
Ok(())
}

Expand Down

0 comments on commit 295b3b0

Please sign in to comment.