From 295bf1ef8912ca68074bc09b8f0c65fa3398b5b4 Mon Sep 17 00:00:00 2001 From: John Bowdre Date: Sat, 10 Feb 2024 17:14:30 -0600 Subject: [PATCH] silence curl output --- .github/workflows/tempest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tempest.yml b/.github/workflows/tempest.yml index 2fd5ea5..80c0566 100644 --- a/.github/workflows/tempest.yml +++ b/.github/workflows/tempest.yml @@ -17,7 +17,7 @@ jobs: steps: - name: Fetch Tempest API data run: | - curl --location "https://swd.weatherflow.com/swd/rest/better_forecast?station_id=${{ secrets.TEMPEST_STATION }}&token=${{ secrets.TEMPEST_TOKEN }}&units_temp=f&units_wind=mph&units_pressure=inhg&units_precip=in&units_distance=mi" \ + curl -sL "https://swd.weatherflow.com/swd/rest/better_forecast?station_id=${{ secrets.TEMPEST_STATION }}&token=${{ secrets.TEMPEST_TOKEN }}&units_temp=f&units_wind=mph&units_pressure=inhg&units_precip=in&units_distance=mi" \ | jq '.current_conditions | {temperature: (.air_temperature | round), conditions, feels_like: (.feels_like | round), icon, rain_today: .precip_accum_local_day, pressure_trend, humidity: .relative_humidity, pressure: ((.sea_level_pressure * 100) | round | . / 100), time, wind_direction: .wind_direction_cardinal, wind_gust}' \ > tempest.json - name: POST to paste.lol