Skip to content

Commit 86b5770

Browse files
author
Marcin Górny
committed
bug fixing
1 parent d846118 commit 86b5770

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

dist/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const main = async () => {
1515
const path = core.getInput('path');
1616
const content = await fs.readFile(path, 'utf8');
1717

18-
regex_list = [
18+
let regex_list = [
1919
/(?<=\*\*Team Name:\*\* ).*/g,
2020
/(?<=\*\*Project Name:\*\* ).*/g,
2121
/(?<=\*\*Contact Name:\*\* ).*/g,
@@ -24,7 +24,7 @@ const main = async () => {
2424
/(?<=\*\*Registered Address:\*\* ).*/g
2525
]
2626

27-
outputs = [
27+
let outputs = [
2828
'team_name',
2929
'project_name',
3030
'contact_name',

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const main = async () => {
77
const path = core.getInput('path');
88
const content = await fs.readFile(path, 'utf8');
99

10-
regex_list = [
10+
let regex_list = [
1111
/(?<=\*\*Team Name:\*\* ).*/g,
1212
/(?<=\*\*Project Name:\*\* ).*/g,
1313
/(?<=\*\*Contact Name:\*\* ).*/g,
@@ -16,7 +16,7 @@ const main = async () => {
1616
/(?<=\*\*Registered Address:\*\* ).*/g
1717
]
1818

19-
outputs = [
19+
let outputs = [
2020
'team_name',
2121
'project_name',
2222
'contact_name',

0 commit comments

Comments
 (0)