We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b3d62a3 commit c5bb322Copy full SHA for c5bb322
2 files changed
.github/workflows/ci-cd.yaml
@@ -34,4 +34,6 @@ jobs:
34
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')
35
needs: [test, docker]
36
uses: ./.github/workflows/release.yaml
37
+ permissions:
38
+ contents: write
39
secrets: inherit
src/sample_python_app/main.py
@@ -22,6 +22,7 @@
22
def run_app():
23
"""Run the application."""
24
lat, lon = weather_settings.LOCATION.latitude, weather_settings.LOCATION.longitude
25
+ logger.info(f"Using input latitude: {lat}, longitude: {lon}")
26
try:
27
astro = fetch_astronomical_data_from_api(lat, lon)
28
except httpx.HTTPStatusError as e:
0 commit comments