-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
61 lines (53 loc) · 2.11 KB
/
index.js
File metadata and controls
61 lines (53 loc) · 2.11 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
const core = require("@actions/core");
const github = require("@actions/github");
const fs = require("fs");
try {
// get the input values
const filePath = core.getInput("filepath");
console.log(filePath);
const versionNumber = core.getInput("versionnumber");
console.log(versionNumber);
const isWindows = core.getInput("isWindows");
console.log(isWindows);
fs.readFile(filePath,
"utf8",
function(err, data) {
if (err) {
return console.log(err);
}
var versionReplacementString = `<ApplicationVersion>${versionNumber}</ApplicationVersion>`;
versionReplacementString = versionReplacementString.replaceAll(".","");
console.log(versionReplacementString);
var displayVersionReplacementString =
`<ApplicationDisplayVersion>${versionNumber}</ApplicationDisplayVersion>`;
console.log(displayVersionReplacementString);
var result = null;
if (isWindows === "true"){
result = data.replace("<ApplicationVersion>1</ApplicationVersion>", "");
result = result.replace("<ApplicationDisplayVersion>1</ApplicationDisplayVersion>",
displayVersionReplacementString);
}
else{
result = data.replace("<ApplicationVersion>1</ApplicationVersion>", versionReplacementString);
result = result.replace("<ApplicationDisplayVersion>1</ApplicationDisplayVersion>",
displayVersionReplacementString);
}
console.log(result);
fs.writeFile(filePath,
result,
"utf8",
function(err) {
if (err) return console.log(err);
});
fs.readFile(filePath,
"utf8",
function(err, data) {
if (err) {
return console.log(err);
}
console.log(data);
});
});
} catch (error) {
core.setFailed(error.message);
}