generated from cicirello/python-github-action-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
31 lines (31 loc) · 915 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
29
30
31
# Make sure to change the action name here (must be unique).
# Update the rest as needed.
name: 'pylode-to-pages'
description: 'converts ontology descriptions into html by using pylode'
branding: # Look at documentation for branding options/requirements. These are my favorites.
icon: 'refresh-cw'
color: 'blue'
inputs:
baseuri:
description: 'urlbase of the domain where this ontology gets published.'
required: true
nsfolder:
description: 'path to the ontologies to be processed'
required: false
default: '.'
outfolder:
description: 'path to where results should be placed'
required: false
default: '.'
logconf:
description: 'Log conf file in yml'
required: false
default: 'logconf.yml'
runs:
using: 'docker'
image: 'Dockerfile'
args:
- ${{ inputs.baseuri }}
- ${{ inputs.nsfolder }}
- ${{ inputs.outfolder }}
- ${{ inputs.logconf }}