forked from OpenRailwayMap/OpenRailwayMap-CartoCSS
-
Notifications
You must be signed in to change notification settings - Fork 1
76 lines (61 loc) · 1.89 KB
/
deploy.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
name: Deploy
on:
workflow_dispatch: ~
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
jobs:
deploy-proxy:
name: Deploy proxy
runs-on: ubuntu-latest
environment: proxy-production
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Setup Fly
uses: superfly/flyctl-actions/setup-flyctl@master
- name: Deploy
run: |
flyctl deploy --config proxy.fly.toml --local-only
deploy-tiles:
name: Deploy tiles
runs-on: ubuntu-latest
environment: tiles-production
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Setup Fly
uses: superfly/flyctl-actions/setup-flyctl@master
- name: Install Osmium
run: |
sudo apt install osmium-tool
- name: Generate cache key
id: cache-key
run: |
echo "key=$(date +%Y-%W)" >> $GITHUB_OUTPUT
- name: Cache downloaded OpenStreetMap data
id: cache-data
uses: actions/cache@v4
with:
key: 'data-europe-${{ steps.cache-key.outputs.key }}'
path: data/filtered/europe.osm.pbf
- name: Download data
if: ${{ steps.cache-data.outputs.cache-hit != 'true' }}
run: |
curl --progress-bar http://ftp.snt.utwente.nl/pub/misc/openstreetmap/europe-latest.osm.pbf --output data/europe.osm.pbf
- name: Import data
env:
OSM2PGSQL_NUMPROC: 4
OSM2PGSQL_CACHE: 2000
OSM2PGSQL_DATAFILE: europe.osm.pbf
run: |
docker compose run --build import
- name: Generate tiles
run: |
docker compose up --build martin-cp
- name: Deploy
run: |
flyctl deploy --config martin-static.fly.toml --local-only