generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
42 lines (34 loc) · 1.05 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
39
40
41
42
name: "loadenv-action"
description: "GitHub Action for loading environment variables"
author: "Rad Akefirad"
branding:
color: "gray-dark"
icon: "loader"
inputs:
files:
required: true
description: '.env files (default is ".env"), currently only one file is supported'
default: ".env"
export-vars:
required: true
description: "whether to export variables in the loaded file as environment variables"
default: "true"
expand-vars:
required: true
description: "whether to exapnd variables in the loaded file"
default: "true"
ignore-host-env:
required: true
description: "whether to ignore host runner environment variables while expanding variables"
default: "true"
additional-vars:
required: true
description: "additional variables (JSON object) to be used while expanding variables"
default: "{}"
strict:
required: true
description: "whether to throw an error if a variable is not found while expanding variables"
default: "true"
runs:
using: "node16"
main: "dist/index.js"