-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaction.yml
More file actions
31 lines (27 loc) · 787 Bytes
/
action.yml
File metadata and controls
31 lines (27 loc) · 787 Bytes
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
name: 'Simple http server with restroom mw in GitHub Actions'
description: 'Start a restroom server'
inputs:
restroom-container-name:
description: "Name of the created container. Useful if you run multiple Restroom containers"
required: false
default: 'restroom'
restroom-contracts:
description: "Absolute path to contracts"
required: true
restroom-files:
description: "Absolute path to files dir"
required: false
default: ""
restroom-logger:
description: "Absolute path to logger dir"
required: false
default: ""
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.restroom-container-name }}
- ${{ inputs.restroom-contracts }}
- ${{ inputs.restroom-files }}
- ${{ inputs.restroom-logger }}
volumes: