generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
38 lines (35 loc) · 1.14 KB
/
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
38
name: 'Setup OpenModelica environment'
description: 'Set up a OpenModelica environment and add it to the PATH'
author: 'Andreas Heuermann'
inputs:
version:
description: 'The OpenModelica version to use.
Example: "1.19.0" for version 1.19.0
or "" for latest release version'
required: false
default: 'release'
architecture:
description: 'The architecture of OpenModelica to be used.
Can be "64" or "32".'
required: false
default: '64'
packages:
description: 'Optional list of OpenModelica APT packages to install.
Each package has to be in a new line. Ignored on Windows.'
required: false
default: 'omc'
libraries:
description: 'Optional list of Modelica libraries to install.
One library per line, separate version number with a space <library> <version>
Example: "Modelica 4.0.0"'
required: false
omc-diff:
description: 'Install OpenModelica omc-diff tool.'
required: false
default: false
runs:
using: 'node20'
main: 'dist/index.js'
branding:
icon: 'download'
color: 'blue'