forked from waldosax/publish-nuget
-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.js
168 lines (126 loc) · 6.11 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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
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.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.includeSymbols = JSON.parse(process.env.INPUT_INCLUDE_SYMBOLS || process.env.INCLUDE_SYMBOLS)
this.noBuild = JSON.parse(process.env.INPUT_NO_BUILD || process.env.NO_BUILD)
this._output = []
}
_printErrorAndExit(msg) {
console.log(`##[error]😭 ${msg}`)
throw new Error(msg)
}
_setOutput(name, value) {
this._output.push(`${name}=${value}`)
}
_flushOutput() {
const filePath = process.env['GITHUB_OUTPUT']
if (filePath) {
fs.appendFileSync(filePath, this._output.join(os.EOL))
}
}
_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}`)
this._setOutput('VERSION', TAG)
}
_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))
if (!this.noBuild) {
this._executeInProcess(`dotnet build -c Release ${this.projectFile}`)
}
this._executeInProcess(`dotnet pack ${this.includeSymbols ? "--include-symbols -p:SymbolPackageFormat=snupkg" : ""} -c Release ${this.projectFile} -o .`)
const packages = fs.readdirSync(".").filter(fn => fn.endsWith("nupkg"))
console.log(`Generated Package(s): ${packages.join(", ")}`)
const pushCmd = `dotnet nuget push *.nupkg -s ${this.nugetSource}/v3/index.json -k ${this.nugetKey} --skip-duplicate${!this.includeSymbols ? " -n" : ""}`,
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]
this._setOutput('PACKAGE_NAME', packageFilename)
this._setOutput('PACKAGE_PATH', path.resolve(packageFilename))
if (symbolsFilename) {
this._setOutput('SYMBOLS_PACKAGE_NAME', symbolsFilename)
this._setOutput('SYMBOLS_PACKAGE_PATH', path.resolve(symbolsFilename))
}
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}`)
let url = `${this.nugetSource}/v3-flatcontainer/${this.packageName.toLowerCase()}/index.json`
console.log(`Getting versions from ${url}`)
https.get(url, res => {
let body = ""
if (res.statusCode == 404) {
console.log('404 response, assuming new package')
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)
console.log(`Versions retrieved: ${existingVersions.versions}`)
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()
this._flushOutput()
}
}
new Action().run()