Skip to content

Commit b0c5c1b

Browse files
committed
fix: removed map
1 parent aed8856 commit b0c5c1b

2 files changed

Lines changed: 1 addition & 4 deletions

File tree

action.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@ inputs:
55
string:
66
description: 'The input string'
77
required: true
8-
map:
9-
description: 'Map strings'
10-
required: false
118
outputs:
129
replaced:
1310
description: 'The output string'

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ try {
77
const string = core.getInput('string')
88
// const map = core.
99
const ids = [...string.matchAll(re)].map(match => match[1])
10-
console.log(map)
10+
// console.log(map)
1111
console.log(ids)
1212
ids.forEach(id => {
1313
console.log(process.env[id])

0 commit comments

Comments
 (0)