-
Notifications
You must be signed in to change notification settings - Fork 14
94 lines (90 loc) · 2.7 KB
/
reusable-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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
on:
workflow_call:
inputs:
country:
description: "Country"
required: true
type: string
city:
description: "City"
required: true
type: string
concurrency:
group: deploy-${{ inputs.country }}-${{ inputs.city }}
cancel-in-progress: true
jobs:
validation-schema:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
repository: ${{ github.repository_owner }}/equalstreetnames
- uses: actions/upload-artifact@v4
with:
name: validation-schema
path: .github/schemas/*.json
validate-geojson:
needs: validation-schema
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: validation-schema
path: schemas
- name: Validate GeoJSON
uses: GrantBirki/json-yaml-validate@v2
with:
use_gitignore: false
json_schema: ./schemas/FeatureCollection.json
files: |
./data/relations.geojson
./data/ways.geojson
validate-metadata:
needs: validation-schema
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: validation-schema
path: schemas
- name: Validate "metadata.json"
uses: GrantBirki/json-yaml-validate@v2
with:
use_gitignore: false
ajv_strict_mode: false
json_schema: ./schemas/metadata.json
files: ./data/metadata.json
build:
needs: [validate-geojson, validate-metadata]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
repository: ${{ github.repository_owner }}/equalstreetnames
persist-credentials: false
- run: git submodule update --init website
- run: git submodule update --init cities/${{ inputs.country }}/${{ inputs.city }}
- run: npm install
working-directory: website
- run: npm run build:${{ inputs.country }}:${{ inputs.city }}
working-directory: website
env:
MAPBOX_TOKEN: ${{ secrets.MAPBOX_TOKEN }}
- uses: actions/upload-pages-artifact@v3
with:
path: website/dist/${{ inputs.country }}/${{ inputs.city }}
deploy:
needs: build
runs-on: ubuntu-latest
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4