forked from huaxk/postgis-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
28 lines (28 loc) · 842 Bytes
/
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
name: 'Setup PostgreSQL with Postgis 12'
description: 'Setup a PostgreSQL 12 database with Postgis'
author: 'huaxk,ireznik'
branding:
icon: 'database'
color: 'green'
inputs:
# See https://hub.docker.com/_/postgres for supported versions
# and further details on input environment variables
postgresql version:
description: 'Version of PostgreSQL to use'
required: false
default: 'latest'
postgresql db:
description: 'POSTGRES_DB - name for the default database that is created'
required: false
default: ''
postgresql user:
description: 'POSTGRES_USER - create the specified user with superuser power'
required: false
default: ''
postgresql password:
description: 'POSTGRES_PASSWORD - superuser password'
required: false
default: ''
runs:
using: 'docker'
image: 'Dockerfile'