-
Notifications
You must be signed in to change notification settings - Fork 3
/
action.yml
37 lines (32 loc) · 1.08 KB
/
action.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
name: 'Generate SmartCity vector tiles'
description: 'generate pmtiles with tippeacanoe'
author: 'Geolonia'
inputs:
INPUT_DIR:
description: 'Input directory.'
required: true
default: './'
NAME:
description: 'Geolonia SmartMap で表示するときの表示名'
required: true
default: 'Geolonia SmartMap サンプルマップ'
MUNICIPALITY_CODE:
description: '全国地方公共団体コード (5桁)'
required: true
DEPLOY_S3_BUCKET:
description: 'デプロイ先の AWS S3 バケツ'
required: true
default: 'smartcitystandaloneinfra-smartcitystandaloneinfra-w7czadiwetse'
shapefile_undefined_crs_setting:
description: '.prj ファイルが存在しないときに使うCRS'
required: true
default: 'EPSG:2446'
runs:
using: 'docker'
image: 'Dockerfile'
env:
INPUT_DIR: ${{ inputs.INPUT_DIR }}
TILESET_NAME: ${{ inputs.NAME }}
MUNICIPALITY_CODE: ${{ inputs.MUNICIPALITY_CODE }}
DEPLOY_S3_BUCKET: ${{ inputs.DEPLOY_S3_BUCKET }}
SHAPEFILE_UNDEFINED_CRS_SETTING: ${{ inputs.shapefile_undefined_crs_setting }}