-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
33 lines (33 loc) · 859 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
name: 'Create Secrets File Action'
description: 'Creating a secrets file from github secrets.'
inputs:
secrets:
description: 'The environment keys'
required: true
file:
description: 'The file name'
default: '.env'
mode:
description: 'Mode can be "dotenv" on "json"'
default: 'dotenv'
path:
description: 'The file root path'
# by default the directory will be
# '/home/runner/work/_actions/du5rte/create-secrets-file/v1'
# this will allow next actions to access it
default: '../../../..'
outputs:
parsed:
description: 'Object version of secrets'
location:
description: 'Location of secrets file'
sanatized:
description: 'Sanatized version of secrets'
success:
description: 'True or False' # boolean
runs:
using: 'node12'
main: 'index.js'
branding:
color: black
icon: eye-off