-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
26 lines (25 loc) · 964 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
# https://docs.github.com/en/actions/creating-actions/creating-a-javascript-action
# https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions
name: 'Set up install4j'
description: 'Set up a specific version of install4j and add the bin directory to PATH'
author: 'Luan Gong'
inputs:
version:
description: 'The version to install. Examples: 9, 9.x, 9.0.7, 10.0, etc.'
required: true
license:
description: 'The license key for install4j'
required: true
cache:
description: 'Whether to cache JREs donwloaded by install4j'
required: false
runs:
# Only 'node12' and 'node16' are allowed currently.
# https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#runs
using: 'node16'
main: 'dist/index.js'
# post: 'dist/cleanup.js'
# https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#branding
branding:
icon: 'monitor'
color: 'blue'