CI: builds basel air quality feed

This commit is contained in:
2026-07-29 18:11:19 +02:00
parent 22d36d2b25
commit ff51378489
+17
View File
@@ -127,6 +127,23 @@ jobs:
fi fi
git commit -m "feeds: places of worship per Religion in Bern update $(date -u +%Y-%m-%d)" git commit -m "feeds: places of worship per Religion in Bern update $(date -u +%Y-%m-%d)"
- name: Generate feeds for air quality in Basel
run: |
if [ "${{ github.event_name }}" = "workflow_dispatch" ] && [ "${{ inputs.verbose }}" = "true" ]; then
echo "Running in VERBOSE mode"
resspublica --gen_baselLuftqualitat --verbose
fi
else
resspublica --gen_baselLuftqualitat
fi
git add feed/ .cache/ assets/
if git diff --cached --quiet; then
echo "No changes to commit"
exit 0
fi
git commit -m "feeds: air quality in Basel update $(date -u +%Y-%m-%d)"
- name: Push changes - name: Push changes
run: | run: |