From 8ce5c981df789ea2a36ad451cce65e3ecfe1e8f7 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Thu, 12 Jun 2025 15:27:02 +0200 Subject: [PATCH] Switch to https://openplanetdata.com/, daily update --- .forgejo/workflows/{update_weekly.yml => update_daily.yml} | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) rename .forgejo/workflows/{update_weekly.yml => update_daily.yml} (78%) diff --git a/.forgejo/workflows/update_weekly.yml b/.forgejo/workflows/update_daily.yml similarity index 78% rename from .forgejo/workflows/update_weekly.yml rename to .forgejo/workflows/update_daily.yml index bec22c6..cad23a6 100644 --- a/.forgejo/workflows/update_weekly.yml +++ b/.forgejo/workflows/update_daily.yml @@ -1,7 +1,7 @@ on: workflow_dispatch: schedule: - - cron: "0 2 * * 5" + - cron: "0 2 * * *" jobs: update_planet_file: @@ -16,7 +16,9 @@ jobs: - name: Download the planet file shell: bash - run: wget --show-progress https://planet.openstreetmap.org/pbf/planet-latest.osm.pbf -O /data/planet-latest.osm.pbf.part + run: | + # https://planet.openstreetmap.org/pbf/planet-latest.osm.pbf + wget https://download.openplanetdata.com/osm/planet/pbf/planet-latest.osm.pbf -O /data/planet-latest.osm.pbf.part - name: Move the planet file