Skip to content

Commit

Permalink
deploy only API
Browse files Browse the repository at this point in the history
  • Loading branch information
hiddewie committed Jul 22, 2024
1 parent 2e56b77 commit 5bd54ee
Showing 1 changed file with 0 additions and 109 deletions.
109 changes: 0 additions & 109 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,115 +4,6 @@ on:
workflow_dispatch: ~

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
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
run: |
flyctl deploy --config proxy.fly.toml --local-only
generate-tiles:
name: Generate tiles
runs-on: ubuntu-latest

strategy:
matrix:
tiles:
- low-med
- standard
- speed
- signals
- electrification
- gauge

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Pull database
run: |
docker compose pull db
docker compose up --no-build --pull never --wait db
- name: Generate tiles
env:
TILES: ${{ matrix.tiles }}
BBOX: '-10.0,35.7,39.0,70.0'
run: |
docker compose run martin-cp
ls -las tiles/
- uses: actions/upload-artifact@v4
with:
name: tiles-${{ matrix.tiles }}
path: |
tiles/*.mbtiles
if-no-files-found: error
retention-days: 3

deploy-tiles:
name: Deploy tiles
runs-on: ubuntu-latest
needs: generate-tiles
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: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- uses: actions/download-artifact@v4
with:
# No name: download everything
path: tiles
merge-multiple: true

- name: List generated tiles
run: |
ls -lah tiles/
- name: Deploy
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
run: |
flyctl deploy --config martin-static.fly.toml --local-only
deploy-api:
name: Deploy API
runs-on: ubuntu-latest
Expand Down

0 comments on commit 5bd54ee

Please sign in to comment.