generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
37 lines (33 loc) · 925 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
32
33
34
35
36
37
name: 'Kiosk Pro version file'
description: 'Create a version file for the Kiosk Pro app'
author: 'Eric Londaits for Imaginary gGmbH'
branding:
icon: 'file-text'
color: 'orange'
# Define your inputs here.
inputs:
filename:
description: 'Filename of the version file to create.'
required: false
default: 'kiosk-pro-version.xml'
version:
description: 'Version number (must be an integer number).'
required: true
zip:
description:
'Filename or full URL to the .zip file containing the files corresponding
to the version.'
required: true
clear-previous-content:
description:
'Set to "true" to remove existing files from the Kiosk App before
installing the new version.'
required: false
default: 'false'
# Define your outputs here.
outputs:
filepath:
description: 'Path to the version file created.'
runs:
using: node20
main: dist/index.js