Deploy #23
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |