This repository has been archived by the owner on Oct 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 101
/
index.js
148 lines (110 loc) · 5.95 KB
/
index.js
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
const os = require("os"),
fs = require("fs"),
path = require("path"),
https = require("https"),
spawnSync = require("child_process").spawnSync
class Action {
constructor() {
this.projectFile = process.env.INPUT_PROJECT_FILE_PATH
this.configuration = process.env.INPUT_BUILD_CONFIGURATION
this.platform = process.env.INPUT_BUILD_PLATFORM
this.packageName = process.env.INPUT_PACKAGE_NAME || process.env.PACKAGE_NAME
this.versionFile = process.env.INPUT_VERSION_FILE_PATH || process.env.VERSION_FILE_PATH || this.projectFile
this.versionRegex = new RegExp(process.env.INPUT_VERSION_REGEX || process.env.VERSION_REGEX, "m")
this.version = process.env.INPUT_VERSION_STATIC || process.env.VERSION_STATIC
this.tagCommit = JSON.parse(process.env.INPUT_TAG_COMMIT || process.env.TAG_COMMIT)
this.tagFormat = process.env.INPUT_TAG_FORMAT || process.env.TAG_FORMAT
this.nugetKey = process.env.INPUT_NUGET_KEY || process.env.NUGET_KEY
this.nugetSource = process.env.INPUT_NUGET_SOURCE || process.env.NUGET_SOURCE
this.nuspecFile = process.env.INPUT_NUSPEC_FILE
this.includeSymbols = JSON.parse(process.env.INPUT_INCLUDE_SYMBOLS || process.env.INCLUDE_SYMBOLS)
}
_printErrorAndExit(msg) {
console.log(`##[error]😭 ${msg}`)
throw new Error(msg)
}
_executeCommand(cmd, options) {
console.log(`executing: [${cmd}]`)
const INPUT = cmd.split(" "), TOOL = INPUT[0], ARGS = INPUT.slice(1)
return spawnSync(TOOL, ARGS, options)
}
_executeInProcess(cmd) {
this._executeCommand(cmd, { encoding: "utf-8", stdio: [process.stdin, process.stdout, process.stderr] })
}
_tagCommit(version) {
const TAG = this.tagFormat.replace("*", version)
console.log(`✨ creating new tag ${TAG}`)
this._executeInProcess(`git tag ${TAG}`)
this._executeInProcess(`git push origin ${TAG}`)
process.stdout.write(`::set-output name=VERSION::${TAG}` + os.EOL)
}
_pushPackage(version, name) {
console.log(`✨ found new version (${version}) of ${name}`)
if (!this.nugetKey) {
console.log("##[warning]😢 NUGET_KEY not given")
return
}
console.log(`NuGet Source: ${this.nugetSource}`)
fs.readdirSync(".").filter(fn => /\.s?nupkg$/.test(fn)).forEach(fn => fs.unlinkSync(fn))
this._executeInProcess(`dotnet build --configuration ${this.configuration} ${this.projectFile} -property:Platform=${this.platform}`)
this._executeInProcess(`dotnet pack ${this.includeSymbols ? "--include-symbols -property:SymbolPackageFormat=snupkg" : ""} -property:NuspecFile=${this.nuspecFile} --no-build --configuration ${this.configuration} ${this.projectFile} -property:Platform=${this.platform} --output .`)
const packages = fs.readdirSync(".").filter(fn => fn.endsWith("nupkg"))
console.log(`Generated Package(s): ${packages.join(", ")}`)
const pushCmd = `dotnet nuget push *.nupkg --source ${this.nugetSource}/v3/index.json --api-key ${this.nugetKey} --skip-duplicate ${!this.includeSymbols ? "--no-symbols" : ""}`,
pushOutput = this._executeCommand(pushCmd, { encoding: "utf-8" }).stdout
console.log(pushOutput)
if (/error/.test(pushOutput))
this._printErrorAndExit(`${/error.*/.exec(pushOutput)[0]}`)
const packageFilename = packages.filter(p => p.endsWith(".nupkg"))[0],
symbolsFilename = packages.filter(p => p.endsWith(".snupkg"))[0]
process.stdout.write(`::set-output name=PACKAGE_NAME::${packageFilename}` + os.EOL)
process.stdout.write(`::set-output name=PACKAGE_PATH::${path.resolve(packageFilename)}` + os.EOL)
if (symbolsFilename) {
process.stdout.write(`::set-output name=SYMBOLS_PACKAGE_NAME::${symbolsFilename}` + os.EOL)
process.stdout.write(`::set-output name=SYMBOLS_PACKAGE_PATH::${path.resolve(symbolsFilename)}` + os.EOL)
}
if (this.tagCommit)
this._tagCommit(version)
}
_checkForUpdate() {
if (!this.packageName) {
this.packageName = path.basename(this.projectFile).split(".").slice(0, -1).join(".")
}
console.log(`Package Name: ${this.packageName}`)
https.get(`${this.nugetSource}/v3-flatcontainer/${this.packageName}/index.json`, res => {
let body = ""
if (res.statusCode == 404)
this._pushPackage(this.version, this.packageName)
if (res.statusCode == 200) {
res.setEncoding("utf8")
res.on("data", chunk => body += chunk)
res.on("end", () => {
const existingVersions = JSON.parse(body)
if (existingVersions.versions.indexOf(this.version) < 0)
this._pushPackage(this.version, this.packageName)
})
}
}).on("error", e => {
this._printErrorAndExit(`error: ${e.message}`)
})
}
run() {
if (!this.projectFile || !fs.existsSync(this.projectFile))
this._printErrorAndExit("project file not found")
console.log(`Project Filepath: ${this.projectFile}`)
if (!this.version) {
if (this.versionFile !== this.projectFile && !fs.existsSync(this.versionFile))
this._printErrorAndExit("version file not found")
console.log(`Version Filepath: ${this.versionFile}`)
console.log(`Version Regex: ${this.versionRegex}`)
const versionFileContent = fs.readFileSync(this.versionFile, { encoding: "utf-8" }),
parsedVersion = this.versionRegex.exec(versionFileContent)
if (!parsedVersion)
this._printErrorAndExit("unable to extract version info!")
this.version = parsedVersion[1]
}
console.log(`Version: ${this.version}`)
this._checkForUpdate()
}
}
new Action().run()