File tree 3 files changed +7
-3
lines changed
.github/actions/appinspect_publish
3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -9679,14 +9679,18 @@ try {
9679
9679
//console.log(`The event payload: ${payload}`);
9680
9680
9681
9681
const AppID = core.getInput('AppID');
9682
+ const user = core.getInput('User');
9683
+ const password = core.getInput('Password');
9684
+
9682
9685
// Print the response body to the console
9683
9686
const options = {
9684
9687
hostname: 'splunkbase.splunk.com',
9685
9688
port: 443,
9686
9689
path: `/api/v1/app/${AppID}/new_release/`,
9687
9690
method: 'POST',
9691
+ auth : `${user}:${password}`,
9688
9692
headers: {
9689
- 'Content-Type': 'application/json'
9693
+ 'Content-Type': 'application/json',
9690
9694
},
9691
9695
};
9692
9696
Original file line number Diff line number Diff line change 24
24
method : 'POST' ,
25
25
auth : `${ user } :${ password } ` ,
26
26
headers : {
27
- 'Content-Type' : 'application/json'
27
+ 'Content-Type' : 'application/json' ,
28
28
} ,
29
29
} ;
30
30
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ bower_components
69
69
build /Release
70
70
71
71
# Dependency directories
72
-
72
+ node_modules /
73
73
jspm_packages /
74
74
75
75
# Snowpack dependency directory (https://snowpack.dev/)
You can’t perform that action at this time.
0 commit comments