diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0ea468f..3f4d1ad 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,6 +13,8 @@ permissions: jobs: build-and-release: runs-on: ubuntu-latest + container: + image: ubuntu:20.04 steps: - uses: actions/checkout@v4 diff --git a/Cargo.toml b/Cargo.toml index eb6895b..accd240 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "saltbox-facts" -version = "1.0.2" +version = "1.0.3" edition = "2021" [profile.dev] diff --git a/src/main.rs b/src/main.rs index 555b04c..a89c69c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -53,7 +53,7 @@ async fn main() -> Result<(), Box> { "timezone": timezone_data }); - println!("{}", serde_json::to_string_pretty(&result)?); + println!("{}", serde_json::to_string(&result)?); Ok(()) }