File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -384,7 +384,7 @@ jobs:
384384 runs-on : windows-2025
385385
386386 env :
387- OSMURL : https://download.geofabrik.de/europe/monaco-latest.osm.bz2
387+ OSMURL : https://download.geofabrik.de/europe/monaco-latest.osm.pbf
388388
389389 steps :
390390 - uses : actions/checkout@v4
@@ -398,8 +398,9 @@ jobs:
398398 & $env:PGBIN\psql -d osm -c "CREATE EXTENSION hstore; CREATE EXTENSION postgis;"
399399 shell : pwsh
400400 - name : Get test data
401- run : (new-object net.webclient).DownloadFile($env:OSMURL, "testfile.osm.bz2")
401+ run : Invoke-WebRequest -Uri $env:OSMURL -OutFile "testfile.osm.pbf"
402+ shell : pwsh
402403 - name : Execute osm2pgsql
403- run : ./osm2pgsql-bin/osm2pgsql --slim -d osm testfile.osm.bz2
404+ run : ./osm2pgsql-bin/osm2pgsql --slim -d osm testfile.osm.pbf
404405 shell : bash
405406
You can’t perform that action at this time.
0 commit comments